Git语法如何建一个分支合并到另一个(解决合并冲突)

2024年04月09日 建站教程

将f1分支合并到master分支,具体代码如下:

$ git checkout master  # 切换到主分支master

$ git merge f1   # 合并f1分支
Merge made by the 'recursive' strategy.
 hello.py | 1 + 
 1 file changed, 1 insertion(+)

合并产生冲突解决方法如下:

$ git merge f1 
Auto-merging hello.py
CONFLICT (content): Merge conflict in hello.py
Automatic merge failed; fix conflicts and then commit the result.

# 打开hello.py,手动解决冲突
# 添加解决后的文件
$ git add hello.py

# 提交标记冲突已解决 
$ git commit -m "conflict resolved"

[master] conflict resolved

本文链接:http://so.lmcjl.com/news/1570/

展开阅读全文
相关内容