I am currently using TortoiseHg (Mercurial) and accidentally committed an incorrect commit message. How do I go about editing this commit message in the repository?
|
Update: Mercurial has added You can rollback the last commit (but only the last one) and then reapply it. Important: this permanently removes the latest commit (or pull). So if you've done a Other than that, you cannot change the repository's history (including commit messages), because everything in there is check-summed. The only thing you could do is prune the history after a given changeset, and then recreate it accordingly. None of this will work if you have already published your changes (unless you can get hold of all copies), and you also cannot "rewrite history" that include GPG-signed commits (by other people). |
|||||||||||||||||||||
|
|
Well, I used to do this way: Imagine, you have 500 commits, and your erroneous commit message is in r.498.
|
|||||||||||||||||||
|
|
I know this is an old post and you marked the question as answered. I was looking for the same thing recently and I found the http://knowledgestockpile.blogspot.com/2010/12/changing-commit-message-of-revision-in.html |
|||||||||
|
Last operation was the commit in questionTo change the commit message of the last commit when the last mercurial operation was a commit you can use
to roll back the last commit and re-commit it with the new message:
But be careful because the rollback command also rolls back following operations:
(see Thus, if you are not sure if the last mercurial command was a Change any other commit messageYou can use the mq extension, which is distributed with Mercurial, to change the commit message of any commit. This approach is only useful when there aren't already cloned repositories in the public that contain the changeset you want to rename because doing so alters the changeset hash of it and all following changesets. That means that you have to be able to remove all existing clones that include the changeset you want to rename. Else pushing/pulling between them wouldn't work. To use the mq extension you to explicitly enable it, e.g. under UNIX check your
Say that you want to change revision X - first Following demo script shows all operations in action. In the example the commit message of third changeset is renamed.
Copy it to an empty directory an execute it e.g. via:
The output should include the orginal changeset message:
And the rename operation the changed message:
(Tested it with Mercurial 1.7.5) |
|||
|
|
|
good news: hg 2.1 just added git like --amend option http://mercurial.selenic.com/wiki/WhatsNew#Mercurial_2.2.1_.282012-05-03.29 and in tortoiseHg, you can use "Amend current revision" by select black arrow on the right of commit button
|
||||
|
|
|
As others have mentioned the MQ extension is much more suited for this task, and you don't run the risk of destroying your work. To do this:
I'm not familiar with TortoiseHg, but the commands should be similar to those above. I also believe it's worth mentioning that editing history is risky; you should only do it if you're absolutely certain that the changeset hasn't been pushed to or pulled from anywhere else. |
|||||||
|
|
Rollback-and-reapply is realy simple solution, but it can help only with the last commit. Mercurial Queues is much more powerful thing (note that you need to enable Mercurial Queues Extension in order to use "hg q*" commands). |
|||
|
|
|
In TortoiseHg, right-click on the revision you want to modify. Choose Modify History->Import MQ. That will convert all the revisions up to and including the selected revision from Mercurial changesets into Mercurial Queue patches. Select the Patch you want to modify the message for, and it should automatically change the screen to the MQ editor. Edit the message which is in the middle of the screen, then click QRefresh. Finally, right click on the patch and choose Modify History->Finish Patch, which will convert it from a patch back into a change set. Oh, this assumes that MQ is an active extension for TortoiseHG on this repository. If not, you should be able to click File->Settings, click Extensions, and click the mq checkbox. It should warn you that you have to close TortoiseHg before the extension is active, so close and reopen. |
|||
|
|
|
I did it this way. Firstly, don't push your changes or you are out of luck. Grab and install the collapse extension. Commit another dummy changeset. Then use collapse to combine the previous two changesets into one. It will prompt you for a new commit message, giving you the messages that you already have as a starting point. You have effectively changed your original commit message. |
|||
|
|
|
There is another approach with the MQ extension and the debug commands. This is a general way to modify history without losing data. Let me assume the same situation as Antonio.
|
||||
|
|

hg commit --amend– kibibu May 8 at 0:22