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?
|
feedback
|
|
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). | |||||||||||||||||||
feedback
|
|
Well, I used to do this way: Imagine, you have 500 commits, and your erroneous commit message is in r.498.
| |||||||||||||||||
feedback
|
|
I think the MQ Extension is what you are looking for. | ||||
|
feedback
|
|
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 | |||||||
feedback
|
|
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. | |||
feedback
|
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) | |||
|
feedback
|
|
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). | |||
|
feedback
|
|
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 | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
I just keep a text file around with notes on different commits. Stuff like "Commit x is the last good commit before starting work on thus and such a major change." That text file goes into the repository with everything else. | |||
|
feedback
|
|
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.
| ||||
|
feedback
|