23
2022-03
git更新遠程倉庫代碼到本地
1 使用命令查看連接的遠程的倉庫
git remote -v
2 遠程獲取代碼
git fetch origin master
如果出現 Already up-to-date 說明代碼更新好了
出現 FETCH_HEAD
使用...