美文网首页
Git强制覆盖本地代码(与git远程仓库保持一致)

Git强制覆盖本地代码(与git远程仓库保持一致)

作者: 蜡笔刘 | 来源:发表于2019-03-01 09:26 被阅读2次

    git强制覆盖:

    git fetch --all
    git reset --hard origin/master
    git pull
    

    git强制覆盖本地命令(单条执行):

    git fetch --all && git reset --hard origin/master && git pull
    

    (方法来自于互联网)

    相关文章

      网友评论

          本文标题:Git强制覆盖本地代码(与git远程仓库保持一致)

          本文链接:https://www.haomeiwen.com/subject/jeyruqtx.html