合并提交没有父级

时间:2011-10-14 09:56:04

标签: git git-merge

假设我的主人有以下提交:

master  : ---A----B----C----D---E

现在我需要从提交A创建新分支,并且只包括提交C中的更改

master  : ---A----B----C----D---E
              \        
branch2 :      \-------C

所以我需要在没有B的情况下输入我的branch2 commit C

我该怎么做?

1 个答案:

答案 0 :(得分:3)

使用cherry-pick

git checkout -b branch2 <shaSUM of A>
git cherry-pick <shaSUM of C>