23
2022-03
git更新远程仓库代码到本地
1 使用命令查看连接的远程的仓库
git remote -v
2 远程获取代码
git fetch origin master
如果出现 Already up-to-date 说明代码更新好了
出现 FETCH_HEAD
使用...