Git之将master合并到自己分支
Posted ailanlan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git之将master合并到自己分支相关的知识,希望对你有一定的参考价值。
工作中常常需要将master合并到自己的分支,这次就记录一下这个过程。
1.切换到master主分支上
git checkout master
2.将master更新的代码pull到本地
git pull
3.切换到自己的分支上
git checkout branchName
4.合并master到自己的分支
git merge master
5.用idea或者sublime text解决冲突
Git用<<<<<<<,=======,>>>>>>>标记分离不同分支的内容,将不需要的部分删掉即可解决冲突。
6.add、commit
git add .
git commit -m "conflict all fixed"
7.将自己分支的代码提交到远程
git push origin branchName
打完收工!
以上是关于Git之将master合并到自己分支的主要内容,如果未能解决你的问题,请参考以下文章