Issue with git pull master is out of sync with origin master

杀马特。学长 韩版系。学妹 提交于 2019-11-30 05:13:18
VonC

An out of sync master can happen when the remote repo has received a forced push (git push --force) which rewrite the history.

If you have done commits of your own on master:

  • make a branch (to remember the current master state)
    git branch old_master

  • make sure you don't have any private file you need to save.

  • follow this guide

That would be:

git fetch origin
git reset --hard origin/master
git clean -f -d

(you can preview the last cleaning steap with a '-n' option: git clean -n -f -d)


Note that git fetch origin master && git merge origin master could be a git pull origin master: the interest of keeping the two steps separated is to look at the difference between master and origin/master before the merge.
If you don't make that diff, then a git pull is simpler.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!