Git:如何编辑不是最新提交的先前提交的消息?

发布于 2024-12-07 23:20:17 字数 138 浏览 0 评论 0原文

我刚刚意识到我在上一次提交的提交消息中留下了一个单词(所以我不能使用 git commit --amend),这使得该消息的含义与我的意图完全相反。

有问题的提交是我当前分支上的 HEAD~2,它位于分支基础之前。我如何才能只编辑该提交上的消息?

I just realized that I left one word in the commit message of a previous commit (so I can't use git commit --amend) that makes the message mean completely the opposite of what I had intended.

The commit in question is HEAD~2 on my current branch, which is ahead of the branch base. How can I edit just the message on that commit?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开柳相依 2024-12-14 23:20:17

使用交互式变基并用 r 标记该提交(改写):

git rebase -i HEAD~3

如果您的历史记录已公开,请勿使用变基

Use interactive rebase and mark that commit with r (reword):

git rebase -i HEAD~3

Don't use rebase if your history was already made public

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文