假设我的主人有以下提交:
master : ---A----B----C----D---E
现在我需要从提交A创建新分支,并且只包括提交C中的更改
master : ---A----B----C----D---E
\
branch2 : \-------C
所以我需要在没有B的情况下输入我的branch2 commit C
我该怎么做?
答案 0 :(得分:3)
git checkout -b branch2 <shaSUM of A>
git cherry-pick <shaSUM of C>