问题
远程仓库的代码是新版本代码,但本地拉取代码仍然是以前的旧版本
解决方法
先使用 git fetch 抓取到本地,重置版本后再拉取
git fetch --all
git reset --hard origin/master
git pull
标签:git,--,代码,拉取,Git,远程
From: https://www.cnblogs.com/conne/p/17731915.html
远程仓库的代码是新版本代码,但本地拉取代码仍然是以前的旧版本
先使用 git fetch 抓取到本地,重置版本后再拉取
git fetch --all
git reset --hard origin/master
git pull
标签:git,--,代码,拉取,Git,远程
From: https://www.cnblogs.com/conne/p/17731915.html