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?

link|improve this question

feedback

11 Answers

up vote 85 down vote accepted

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 hg update that commit is no longer in your working directory then it's gone forever. So make a copy first.

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).

link|improve this answer
Thanks, your solution to rollback and reapply is much more simpler. – maxyfc Mar 8 '09 at 5:19
2  
just for reference, the command is `hg rollback' – Valters Vingolds Feb 21 '10 at 12:57
46  
I just watched a guy get a commit toasted because he followed this advice. When suggesting someone use rollback please always include a warning that it permanently removes the latest commit (or pull). So if you've done a hg update (like he had) and that commit is no longer in your working directory then it's gone forever. – Ry4an Aug 19 '10 at 15:14
11  
The easiest way to avoid rollback/rollover disasters is to perform a simple change (add or remove spacing) and explain your mistake in the next commit message. – rxgx Aug 16 '11 at 0:33
2  
@rxgx you should post this as a separate answer since it is probably the best answer here. – ArtB Sep 15 '11 at 14:21
feedback

Well, I used to do this way:

Imagine, you have 500 commits, and your erroneous commit message is in r.498.

hg qimport -r 498:tip
hg qpop -a
joe .hg/patches/498.diff
(change the comment, after the mercurial header)
hg qpush -a
hg qdelete -r qbase:qtip
link|improve this answer
5  
You can also edit the commit message with hg qrefresh -e after using hg qpop to arrive at the right patch. – Martin Geisler Jul 27 '09 at 21:52
1  
Of course instead of 'joe' you can use any other editor of choice. – Kees de Kooter Jan 6 '10 at 20:27
+1 this is the approach I use when I cant use the simple rollback. Windows users should note that notepad isnt happy about the eol in the diff file. – mizipzor Jun 9 '10 at 13:44
"r.3" is the third commit, counted from the beginning of history, typically not one of the recent commits. I changed it to a 3-digit to prevent other people from making the same mistake I did. (By the way, to undo 'qimport' you can use 'hg qfinish -a'). – Nickolay Mar 6 '11 at 21:24
2  
I am new to MQs but I think that you have to use hg qfinish -a instead of hg qdelete -r ... because the help to qdelete says 'The patches must not be applied', where in the example the patches are applied (and the hgbook states that 'qbase and qtip identify the “bottom-most” and topmost applied patches'). – maxschlepzig Aug 30 '11 at 20:52
feedback

I think the MQ Extension is what you are looking for.

link|improve this answer
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 histedit extension very useful. The process is explained here:

http://knowledgestockpile.blogspot.com/2010/12/changing-commit-message-of-revision-in.html

link|improve this answer
Really nice extension, thanks for the suggestion! – unexist Jun 17 '11 at 13:48
I ended up on this page because histedit does not work on merge commits. Just a warning, you can't rename a merge with this. – Keyo Oct 10 '11 at 2:12
Current versions of the extension even support "message" command specifically for editing commit messages. – Sergii Volchkov Dec 5 '11 at 15:12
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:

  1. Enable the MQ extension, by adding something like this to your hgrc:
    [extensions]
    mq =
    
  2. Update to the changeset you want to edit, typically tip:
    hg up <rev>
    
  3. Import the current changeset into the queue:
    hg qimport -r .
    
  4. Refresh the patch, and edit the commit message:
    hg qrefresh -e
    
  5. Finish all applied patches (one, in this case) and store them as regular changesets:
    hg qfinish -a
    

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.

link|improve this answer
Tested it with Mercurial 1.7.5 and your procedure does not work. A qimport prints 'abort: revision <rev> has unmanaged children'. What works is not calling hg up, importing everything from including <rev> to the tip, pop everything, call then hg qrefresh -e and pushing everything - like described in Antonio's answer. – maxschlepzig Aug 30 '11 at 20:41
feedback

Last operation was the commit in question

To change the commit message of the last commit when the last mercurial operation was a commit you can use

$ hg rollback

to roll back the last commit and re-commit it with the new message:

$ hg ci -m 'new message'

But be careful because the rollback command also rolls back following operations:

  • import
    • pull
    • push (with this repository as the destination)
    • unbundle

(see hg help rollback)

Thus, if you are not sure if the last mercurial command was a hg ci, don't use hg rollback.

Change any other commit message

You 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 ~/.hgrc, which should contain following lines:

[extensions]
mq=

Say that you want to change revision X - first qimport imports revisions X and following. Now they are registered as a stack of applied patches. Popping (qpop) the complete stack except X makes X available for changes via qrefresh. After the commit message is changed you have to push all patches again (qpop) to re-apply them, i.e. to recreate the following revisions. The stack of patches isn't needed any, thus it can be removed via qfinish.

Following demo script shows all operations in action. In the example the commit message of third changeset is renamed.

# test.sh
set -x -e -u
echo INFO: Delete old stuff
rm -rf .hg `seq 5`
echo INFO: Setup repository with 5 revisions
hg init
echo '[ui]' > .hg/hgrc
echo 'username=Joe User <juser@example.org>' >> .hg/hgrc
echo 'style = compact' >> .hg/hgrc
for i in `seq 5`; do
  touch $i && hg add $i && hg ci -m "changeset message $i" $i
done
hg log 
echo INFO: Need to rename the commit message or the 3rd revision
echo INFO: Displays all patches
hg qseries
echo INFO: Import all revisions including the 3rd to the last one as patches
hg qimport -r 2:tip
hg qseries
echo INFO: Pop patches
hg qpop 2.diff
hg qseries
hg log 
hg parent
hg qrefresh -m 'CHANGED MESSAGE'
hg log 
echo INFO: Push all remaining patches
hg qpush -a
hg log 
hg qseries
echo INFO: Remove all patches
hg qfinish -a
hg qseries && hg log && hg parent

Copy it to an empty directory an execute it e.g. via:

$ bash test.sh 2>&1 | tee log

The output should include the orginal changeset message:

+ hg log
[..]
2   53bc13f21b04   2011-08-31 17:26 +0200   juser
  changeset message 3

And the rename operation the changed message:

+ hg log
[..]
2   3ff8a832d057   2011-08-31 17:26 +0200   juser
  CHANGED MESSAGE

(Tested it with Mercurial 1.7.5)

link|improve this answer
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).

link|improve this answer
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

link|improve this answer
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.

link|improve this answer
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.

link|improve this answer
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.

// set current tip to rev 497
hg debugsetparents 497
hg debugrebuildstate
// hg add/remove if needed
hg commit
hg strip [-n] 498
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.