修改分支时合并冲突

这个问题在这里已经有了答案:

  • 如何解决Git中的合并冲突? 32个答案

  • 您可以手动编辑处于冲突状态的文件,然后再次执行提交。 否则,你可以使用

    $> git mergetool
    

    现在您可以决定是否保留更改或更改。

        git checkout --ours FileYouWantToKeepYourChange
        git checkout --theirs FileYouWantToKeepTheirChange
        git add FileYouWantToKeepYourChange, FileYouWantToKeepTheirChange
        git commit -m "Conflict resolved"
    
    链接地址: http://www.djcxy.com/p/7221.html

    上一篇: Merge conflict when modifying a branch

    下一篇: web fails to start with a 500 Server Error