小编典典

使用 `git rebase` 更改旧的提交消息

all

我试图编辑旧的提交消息,如此所述。

问题是,现在,当我尝试运行rebase -i HEAD~5它时,它会说interactive rebase already started.

所以然后我尝试:git rebase --continue但收到此错误:

error: Ref refs/heads/master is at 7c1645b447a8ea86ee143dd08400710c419b945b but expected c7577b53d05c91026b9906b6d29c1cf44117d6ba
fatal: Cannot lock the ref 'refs/heads/master'.

有任何想法吗?


阅读 96

收藏
2022-07-28

共1个答案

小编典典

它说:

当您保存并退出编辑器时,它会将您倒回到该列表中的最后一次提交,并将您放到命令行中,并显示以下消息:

$ git rebase -i HEAD~3
Stopped at 7482e0d... updated the gemspec to hopefully work better
You can amend the commit now, with

这并不意味着:

再次输入 git rebase -i HEAD~3

退出编辑器时尽量 _ 不要_ 输入 ,它应该可以正常工作。 (否则,在您的特定情况下,可能需要重置所有内容并允许您重试)git rebase -i HEAD~3
git rebase -i --abort


正如Dave Vogt在评论中提到的那样,
在您修改了第一个 commit 之后git rebase --continue,用于在变基过程中执行下一个任务。 __

此外,Gregg Lind在他的回答中提到了以下 reword 命令git rebase

通过将命令“pick”替换为命令“edit”,您可以git rebase在应用该提交后告诉停止,以便您可以编辑文件和/或提交消息,修改提交,并继续变基。

如果您只想编辑提交的提交消息,请将命令 “pick” 替换为命令 ” reword,因为Git1.6.6 (January
2010)

它的作用与“edit在交互式变基期间”所做的相同,只是 它只允许您编辑提交消息而不将控制权返回给 shell 。这是非常有用的。
目前,如果您想清理提交消息,您必须:

$ git rebase -i next

然后将所有提交设置为“dit”。然后在每一个上:

# Change the message in your editor.
$ git commit --amend
$ git rebase --continue

使用“reword”而不是“ edit”可以跳过git-commitgit-rebase调用

2022-07-28