删除本地文件后Git从远程仓库重新获取

编程

Git提示:up-to-date,但未得到删除的文件

原因:当前本地库处于另一个分支中,需将本分支发Head重置至master.

 

git checkout master 

git reset --hard

git 强行pull并覆盖本地文件

git fetch --all  

git reset --hard origin/master

git pull

参考资料 

https://stackoverflow.com/questions/15376241/why-does-git-say-my-master-branch-is-already-up-to-date-even-though-it-is-not

https://stackoverflow.com/questions/15376241/why-does-git-say-my-master-branch-is-already-up-to-date-even-though-it-is-not

以上是 删除本地文件后Git从远程仓库重新获取 的全部内容, 来源链接: utcz.com/z/514393.html

回到顶部