Git:如何编辑不是最新提交的先前提交的消息?
我刚刚意识到我在上一次提交的提交消息中留下了一个单词(所以我不能使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用交互式变基并用
r
标记该提交(改写):如果您的历史记录已公开,请勿使用变基
Use interactive rebase and mark that commit with
r
(reword):Don't use rebase if your history was already made public