当前位置:   article > 正文

怎么让git clone到本地的库更新到github上的版本_git clone upgrade

git clone upgrade

最保险的做法如下:

# 第一句话,切换到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了!
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

参考:https://stackoverflow.com/questions/1125968/how-do-i-force-git-pull-to-overwrite-local-files

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/888134
推荐阅读
相关标签
  

闽ICP备14008679号