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

git分支合并

时间:2019-07-16 18:59:06      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:git push   blog   git分支   commit   div   ranch   仓库   stat   状态   

对于复杂的系统,我们可能要开好几个分支来开发,那么怎样使用git合并分支呢?

合并步骤:
1、进入要合并的分支(如开发分支合并到master,则进入master目录)
git checkout master
git pull

2、查看所有分支是否都pull下来了
git branch -a

3、使用merge合并开发分支
git merge 分支名

4、查看合并之后的状态
git status

5、有冲突的话,通过IDE解决冲突;

6、解决冲突之后,将冲突文件提交暂存区
git add 冲突文件

7、提交merge之后的结果
git commit

如果不是使用git commit -m "备注" ,那么git会自动将合并的结果作为备注,提交本地仓库;

8、本地仓库代码提交远程仓库
git push

git将分支合并到分支,将master合并到分支的操作步骤是一样的。

git分支合并

标签:git push   blog   git分支   commit   div   ranch   仓库   stat   状态   

原文地址:https://www.cnblogs.com/mary-123/p/11196374.html

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