1. git merge 冲突现象
andrew@b-d51qlvdl-2310 test1 % git merge test
Auto-merging README.en.md
CONFLICT (content): Merge conflict in README.en.md
Automatic merge failed; fix conflicts and then commit the result.
2. 冲突解决过程
2.1 冲突描述
<<<<<<<到=======是在当前分支合并之前的文件内容
=======到>>>>>>> 是在其它分支下修改的内容
需要在这个两个版本中选择一个,然后把标记符号也要一起删除
2.2 冲突现象
- 查看冲突文件
- 修改冲突文件
- 确认并推分支
git push