码迷,mamicode.com
首页 > 其他好文 > 详细

【git】分支合并

时间:2019-07-24 16:34:47      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:分支   git fetch   etc   remote   不用   sha   http   ranch   命令行   

1,查看远程分支

git remote -v

2,拉取远程的目标分支master代码到本地分支temp

git fetch origin <master>:<temp>

3,查看temp分支和本地分支的不同

git diff temp

4,将temp分支合并到本地分支:

git merge temp

执行这个命令后,temp分支的代码会和本地当前分支的代码进行合并。如果自动合并成功,就不用管了;如果合并有冲突,则需要手工处理冲突(用命令行工具找到 << HEAD这样的冲突点)

5,处理完所有的合并,删除临时分支

git branch -d temp

 

转自:https://blog.csdn.net/loongshawn/article/details/78864039

【git】分支合并

标签:分支   git fetch   etc   remote   不用   sha   http   ranch   命令行   

原文地址:https://www.cnblogs.com/helww/p/11238733.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!