我试图合并2个提交为1,所以我遵循“压缩提交与rebase”从git就绪。
我跑
git rebase --interactive HEAD~2
在结果编辑器中,我将pick更改为squash,然后save-quit,但由于出现错误,重基操作失败
没有之前的提交就不能“squash”
现在我的工作树已经达到了这个状态,我很难恢复。
命令git rebase——interactive HEAD~2失败:
交互式改基已经开始
git rebase -continue失败
没有之前的提交就不能“squash”
如果您想合并两个最近的提交,而只使用旧的提交的消息,您可以使用expect自动化该过程。
我认为:
您使用vi作为编辑器
每次提交只有一行
我用git版本2.14.3 (Apple git -98)进行了测试。
#!/usr/bin/env expect
spawn git rebase -i HEAD~2
# change the second "pick" to "squash"
# down, delete word, insert 's' (for squash), Escape, save and quit
send "jdwis \033:wq\r"
expect "# This is a"
# skip past first commit message (assumed to be one line), delete rest of file
# down 4, delete remaining lines, save and quit
send "4jdG\r:wq\r"
interact
因为我对几乎所有的东西都使用git,所以对我来说,即使在这里这样做也是很自然的。
假设我签出了branchX,在它的顶端有两个提交,其中我想创建一个合并它们内容的提交,我这样做:
git checkout HEAD^ // Checkout the privious commit
git cherry-pick --no-commit branchX // Cherry pick the content of the second commit
git commit --amend // Create a new commit with their combined content
如果我想更新branchX以及(我认为这是这个方法的缺点),我也必须:
git checkout branchX
git reset --hard <the_new_commit>
假设你在自己的主题分支里。如果你想把最后两个提交合并成一个,看起来像一个英雄,就在你做最后两个提交之前分支提交(使用相对提交名称HEAD~2指定)。
git checkout -b temp_branch HEAD~2
然后在这个新分支中挤压提交另一个分支:
git merge branch_with_two_commits --squash
这将带来改变,但不会导致改变。所以只要承诺就行了。
git commit -m "my message"
现在您可以将这个新的主题分支合并回您的主分支。