git上解决代码冲突(merge版)

1、切换到master: git checkout master

2、拉最新代码:git pull origin master

3、切换到提交的分支:git checkout Txxxx

4、合并:git merge master

5、删掉多余符号

6、git add .

7、git commit

8、git push origin Txxxx

原文地址:https://www.cnblogs.com/UniqueColor/p/6084382.html