最保险的做法如下:
# 第一句话,切换到master branch
git checkout master
# 第二句话,新建一个branch来备份本地现有的“旧库”,因为一旦git fetch之后本地的数据都会被覆盖
git branch new-branch-to-save-current-commits
# 第三句话和第四句话就是更新到最新的库(与github上的远程库同步)
git fetch --all
git reset --hard origin/master
# 如果想要回到备份的“旧库”的话。输入:
git branch
# 会列出master和new-branch-to-save-current-commits两个branch。然后输入
git checkout new-branch-to-save-current-commits
# 就会切换到new-branch-to-save-current-commits branch了!
参考:https://*.com/questions/1125968/how-do-i-force-git-pull-to-overwrite-local-files