好久不见,我是今越。和大家分享下开发工作当中遇到合并文件冲突问题的处理方法。
git merge本地合并分支出现文件冲突的处理步骤总结:
第一步,根据 git 提示,找到冲突的文件,解决冲突(注意:冲突文件内容会有标记);
第二步,修改完冲突文件后,执行 git add 冲突文件名;
第三步,执行 git commit 命令后(注意:没有 -m 选项),会进入类似于 vim 的操作界面,这里需要把 conflict 及相关的冲突文件名称行删除掉,例如:
Conflicts:
RedisKeyEnum.java
It looks like you may be committing a MERGE.
If this is not correct, please remove the file
.git/MERGE_HEAD
and try again.
Please enter the commit message for your changes. Lines starting
with ‘#’ will be ignored, and an empty message aborts the commit.
On branch master
Your branch is ahead of ‘origin/master’ by 1 commit.
需要删掉上面的这两行:
Conflicts:
RedisKeyEnum.java
第四步,git push 到远程仓库分支(注意:前面已经执行过 merge 操作了,所以解决完冲突后不需要再执行 merge 操作);
唯有热爱可抵岁月漫长。我是今越,欢迎大家点赞、收藏和评论。感谢支持呦!
版权归原作者 向往的今越 所有, 如有侵权,请联系我们删除。