如何“重组”一次提交?

时间:2015-04-12 11:24:54

标签: git

考虑以下树:

A --- B --- C --- D --- E --- F --- master
 \
  \
    B' --- C' --- D' --- topic

其中(B != B')。我想做git rebase --onto master master topic但这会产生冲突。但情况更简单:我想将单topic提交放到master。

git checkout master
git cherry-pick topic
git checkout topic
git reset --hard master
git checkout master
git reset --hard HEAD~1

用一个命令执行上面的命令是不是可以吗?

1 个答案:

答案 0 :(得分:2)

首先重置你的分支,然后使用reflog找到提交樱桃选择:

git checkout -B topic master # re-create topic branch at the commit of master
git cherry-pick topic@{1} # copy the old tip of the topic branch

另一种 - 甚至可能更简单 - 方法是通过rebase传递一系列提交,这些提交只包含您想要重新设置的单个提交:

git rebase --onto master topic^ topic