git合并指定分支的commit到主干上

1、先切换分支到master

git checkout master

2、目前正处于主干上,执行命令,将分支从最后一个commit合并到主干上

git rebase --onto cb4023015fff0d7fe6677bc24bd24deafe7a7d0e

3、如果只想合并指定commit,不包含其他commit的话,使用

git cherry-pick  cb4023015fff0d7fe6677bc24bd24deafe7a7d0e

 

二、合并分支A到分支B(此时B为master角色)

1、先进入分支B

git checkout B

2、使用合并命令

git merge A

3、合并完成,解决冲突即可。 

 

 

三、git创建分支并提交到远程服务器。

 

git branch test。创建分支test

git checkout test 。切换到test分支

git push origin test。提交到远程分支test

 

posted @ 2019-05-15 15:33  面壳  Views(5829)  Comments(0Edit  收藏  举报