Merge conflict when modifying a branch
This question already has an answer here:
Either you can edit the files in conflict manually, and do a commit again. Otherwise you can use
$> git mergetool
Now you can decide whether to keep your change or their change.
    git checkout --ours FileYouWantToKeepYourChange
    git checkout --theirs FileYouWantToKeepTheirChange
    git add FileYouWantToKeepYourChange, FileYouWantToKeepTheirChange
    git commit -m "Conflict resolved"
上一篇: 解决Git合并冲突的步骤
下一篇: 修改分支时合并冲突
