【GIT】git 合并分支和解决冲突
创作时间:
作者:
@小白创作中心
【GIT】git 合并分支和解决冲突
引用
1
来源
1.
https://www.ctyun.cn/zhishi/p-494078
准备新的feature1分支,继续我们的新分支开发:
$ git checkout -b feature1
Switched to a new branch 'feature1'
修改readme.txt最后一行,改为:
Creating a new branch is quick AND simple.
在feature1分支上提交:
$ git add readme.txt
$ git commit -m "AND simple"
[feature1 14096d0] AND simple
1 file changed, 1 insertion(+), 1 deletion(-)
切换到master分支:
$ git checkout master
Switched to branch 'master'
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
Git还会自动提示我们当前master分支比远程的master分支要超前1个提交。
在master分支上把readme.txt文件的最后一行改为:
Creating a new branch is quick & simple.
提交:
$ git add readme.txt
$ git commit -m "& simple"
[master 5dc6824] & simple
1 file changed, 1 insertion(+), 1 deletion(-)
现在,master分支和feature1分支各自都分别有新的提交,变成了这样:
这种情况下,Git无法执行“快速合并”,只能试图把各自的修改合并起来,但这种合并就可能会有冲突,我们试试看:
$ git merge feature1
Auto-merging readme.txt
CONFLICT (content): Merge conflict in readme.txt
Automatic merge failed; fix conflicts and then commit the result.
果然冲突了!Git告诉我们,readme.txt文件存在冲突,必须手动解决冲突后再提交。git status也可以告诉我们冲突的文件:
$ git status
On branch master
Your branch is ahead of 'origin/master' by 2 commits.
(use "git push" to publish your local commits)
You have unmerged paths.
(fix conflicts and run "git commit")
(use "git merge --abort" to abort the merge)
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: readme.txt
no changes added to commit (use "git add" and/or "git commit -a")
我们可以直接查看readme.txt的内容:
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
<<<<<<< HEAD
Creating a new branch is quick & simple.
=======
Creating a new branch is quick AND simple.
>>>>>>> feature1
Git用<<<<<<<,=======,>>>>>>>标记出不同分支的内容,我们修改如下后保存:
Creating a new branch is quick and simple.
再提交:
$ git add readme.txt
$ git commit -m "conflict fixed"
[master cf810e4] conflict fixed
现在,master分支和feature1分支变成了下图所示:
用带参数的git log也可以看到分支的合并情况:
$ git log --graph --pretty=oneline --abbrev-commit
* cf810e4 (HEAD -> master) conflict fixed
|\
| * 14096d0 (feature1) AND simple
* | 5dc6824 & simple
|/
* b17d20e branch test
* d46f35e (origin/master) remove test.txt
* b84166e add test.txt
* 519219b git tracks changes
* e43a48b understand how stage works
* 1094adb append GPL
* e475afc add distributed
* eaadf4e wrote a readme file
最后,删除feature1分支:
$ git branch -d feature1
Deleted branch feature1 (was 14096d0).
工作完成。
小结
当Git无法自动合并分支时,就必须首先解决冲突。解决冲突后,再提交,合并完成。
解决冲突就是把Git合并失败的文件手动编辑为我们希望的内容,再提交。
用git log --graph命令可以看到分支合并图。
热门推荐
承德旅游必去10大景点,哪处风景最动人?
如何分析高中生的消费观及其影响因素
2025首个LPR出炉,短期内或有调降空间
湖南8家景区冲进全国200强!你打卡过几个?
在生活中我们应如何与尘螨“斗智斗勇”?
为什么路由器接在光猫百兆口上,WiFi就不能使用?
减肥力量加有氧
布达拉宫的最佳拍摄机位分享!
长夏时节多湿气,中医教你把湿祛
N3日语是什么水平?详解N3日语能力的定义与应用
可转债和转股溢价率(干货篇)
齐白石牡丹的绘画技巧?齐白石书画院院长齐良芷弟子汤发周发布
潮州旅游攻略一日游:路线和必去景点推荐
2025中科大强基计划招生简章:开启卓越人才培养之旅
历史文化语境下元代禅僧一山一宁对日文化的传播研究
香雪兰怎么种?
你会“吃”蔬菜吗?其实,真有人“不会”
粪菌移植的关键——供体选择与准备
青海藏羊产业强起来
沈阳大学是公办还是民办大学?
2024年网友最喜爱的5个电影女性角色:杨紫和赵丽颖入选
炒糊的菜还能不能吃?
华硕电脑安装Windows 11/10时找不到磁盘驱动器的解决方案
存10万一天赚不到4元!一年间余额宝收益率几近腰斩
2025年长春站春运圆满收官:发送旅客362.4万人次,同比增长5%
牡丹虾怎么判断是否新鲜 4个标准要知道
庆余年第一季特别版和原版有什么区别
人工器官伦理与意识上传:科技前沿的哲学思考
脸上的痣代表什么意义 你知道脸上长痣的意思吗
社工报考全攻略:补贴政策与职业前景大揭秘