If I do a commit in Mercurial and then realise I haven't added enough information to the commit message, is there a way to just add another message or note without commiting anything else? What is the best way to get that extra info in there?

I realise I can sometimes rollback and commit again but that is not always possible. I don't want to rewrite history either, I just want to add information.

link|improve this question
possible duplicate of How to edit incorrect commit message in Mercurial? – jk. Mar 2 '11 at 11:06
2  
There was a discussion about this recently on the Mercurial mailinglist: mercurial.markmail.org/thread/skalggb4typm27um See that message for an extension that does what you want. – Martin Geisler Mar 2 '11 at 14:11
Thanks Martin, that pretty much answers my question. – SoftDeveloper Mar 2 '11 at 16:31
feedback

2 Answers

Unless you're willing to get into editing history using MQ or histedit (and in Mercurial that's not usual practice) or it was the latest commit (rollback) then you need to commit something else to be able to add another changeset with a different commit message.

Mercurial is built around the concept of an "immutable history" and it intentionally restricts tools that let you alter the past.

link|improve this answer
I understand the "immutable history" thing and I don't want to change the past, I just want to add info to it. Kind of like Tags but with more text. Martin Geisler's comment pretty much answers my question. – SoftDeveloper Mar 2 '11 at 16:30
Yeah, I like (some of) the suggestions in that thread. It'll be interesting to see if it goes anywhere. – Ry4an Mar 2 '11 at 16:43
feedback

If this was your last commit then you could rollback and commit again (with the new message).

link|improve this answer
Yes but not always possible, eg on the first commit, would I have to delete the repo and start again? Quite often I want to add info about the repo/project later. – SoftDeveloper Mar 2 '11 at 12:02
feedback

Your Answer

 
or
required, but never shown

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