0 冲突概要
冲突产生场景:
- 多个分支代码合并到一个分支时。
- 多个分支向同一个远端分支推送代码。
git的合并中产生冲突的具体情况:
- 两个分支中修改了同一个文件。
- 两个分支中修改了同一个文件的名称。
解决办法:
- 在当前分支上,直接修改冲突代码—>add—>commit。
- 在本地当前分支上,修改冲突代码—>add—>commit—>push
1 冲突演示
-
先创建本地仓库,且创建一个测试文件。
# 初始化仓库 git init git add test.txt git commit -m "create test.txt"
-
创建新分支 other。
# 创建分支 git branch other # 查看分支 git branch
- 在 main 分支下修改
test.txt
文件。
-
提交 main 分支,然后切换到 other 分支。
#切换到 other 分支 git checkout other
- 在 other 分支下修改
test.txt
文件。
-
在 other 分支下提交。
git add test.txt git commit -m "modify in other branch"
- 切换回 main 分支,并合并,冲突出现。
2 冲突解决
- 本地手动修改,要留的部分。
- 然后 commit.
- 就完了。
至自己:
停止乱摸鱼。