9

当我在 git 中进行交互式 rebase时,我如何squash提交并停止结束edit同一个提交?

4

2 回答 2

5

分两步进行,首先是 squash,然后在第二次运行交互式 rebase edit squashed commit 时进行。

于 2016-10-28T20:20:35.423 回答
3

或者,您可以使用“编辑”来编辑提交,然后执行例如

git reset --soft HEAD^
git commit --amend
于 2018-09-11T14:37:48.670 回答