我想从线性提交树中删除选定的提交日志项,这样这些项就不会显示在提交日志中。

我的提交树看起来像这样:

R--A--B--C--D--E--HEAD

我想删除B和C条目,这样它们就不会显示在提交日志中,但是应该保留从A到D的更改。也许通过引入一次提交,这样B和C就变成了BC,树看起来就像。

R--A--BC--D--E--HEAD

或者,理想情况下,A后面直接是D。D'表示从A到B, B到C, C到D的变化。

R--A--D'--E--HEAD

这可能吗?如果是,怎么做?

这是一个相当新的项目,所以目前还没有分支,因此也没有合并。


当前回答

下面是一种删除特定提交id的方法,只知道您想删除的提交id。

git rebase --onto commit-id^ commit-id

注意,这实际上删除了提交所引入的更改。

其他回答

还有一种方法,

git rebase -i ad0389efc1a79b1f9c4dd6061dca6edc1d5bb78a (C's hash)
and
git push origin master  -f

选择您想要使用它作为基础的散列,上面的命令应该使其具有交互性,以便您可以压缩所有顶部消息(您需要保留最老的消息)

下面是一种删除特定提交id的方法,只知道您想删除的提交id。

git rebase --onto commit-id^ commit-id

注意,这实际上删除了提交所引入的更改。

你可以在你的例子中非交互式地删除B和C:

git rebase --onto HEAD~5 HEAD~3 HEAD

或象征性的,

git rebase --onto A C HEAD

注意,B和C的变化不会出现在D中;他们会走的。

Git-rebase(1)正是这样做的。

$ git rebase -i HEAD~5

Git awesome -ness [Git rebase——interactive]包含了一个例子。

不要在公共(远程)提交上使用git-rebase。 确保您的工作目录是干净的(提交或保存当前的更改)。 执行上述命令。它会启动你的$编辑器。 将C和D之前的pick替换为squash。它会将C和D合并为b。如果你想删除一个提交,那么只需删除它的行。

如果你迷路了,输入:

$ git rebase --abort  
# detach head and move to D commit
git checkout <SHA1-for-D>

# move HEAD to A, but leave the index and working tree as for D
git reset --soft <SHA1-for-A>

# Redo the D commit re-using the commit message, but now on top of A
git commit -C <SHA1-for-D>

# Re-apply everything from the old D onwards onto this new place 
git rebase --onto HEAD <SHA1-for-D> master