我有一棵包含3个命令的工作树:
➜〜myproject git :(主) git log
commit a99cce8240495de29254b5df8745e41815db5a75
Author: My Name <my@mail.com>
Date: Thu Aug 16 00:59:05 2012 +0200
.gitignore edits
commit 5bccda674c7ca51e849741290530a0d48efd69e8
Author: My Name <my@mail.com>
Date: Mon Aug 13 01:36:39 2012 +0200
Create .gitignore file
commit 6707a66191c84ec6fbf148f8f1c3e8ac83453ae3
Author: My Name <my@mail.com>
Date: Mon Aug 13 01:13:05 2012 +0200
Initial commit (with a misleading message)
现在我希望第一次提交reword
的提交消息(6707a66)
➜〜myproject git :(主) git rebase -i 6707
(…进入vim)
pick 5bccda6 Create .gitignore file
pick a99cce8 .gitignore edits
# Rebase 6707a66..a99cce8 onto 6707a66
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out
在这种情况下,我希望更正(reword
以git的说法)有问题的提交消息:
初次提交(带有误导性消息)
……采取适当的措施。
毫不奇怪,我的上述尝试没有成功,因为第一次提交显然没有任何父提交。(当你rebase
,你需要引用下一个最早提交之前您要的一个reword
,对吧?)
因此,我的问题的要点是,您可以通过其他任何方式来实现这一目标吗?
或者,您也可以将其作为存储库杂种古怪的东西放任
—
克里斯托弗·
^非常正确...我以为我已经对这个特定问题进行了适当的搜索,但这与我的问题相同。有大量完善我的问题的文案写作的方法。:-P
—
Henrik
@hced::)您的广告文案不会浪费-它将帮助其他人在将来找到解决方案,即使它被关闭也是如此
—
Mark Longair 2012年
遇到此问题的任何人都可以找到我的答案,以更改第一次提交的消息?(git)会有所帮助。