16★Git入门★解决分支冲突 git merge
merge之后冲突的文件长这样

解决冲突:
1.手动修改这个文件
2.git add这个文件
3.commit完成合并
我在git pull --rebase的时候,第3步使用的是git rebase --continue,如果没做第2步会提示如下内容
xx/xxfile: needs merge
You must edit all merge conflicts and then
mark them as resolved using git add
你必须手动编辑冲突内容并用git add来把它们标记成已解决

