Let's say I just commited my file, in Mercurial, with a description such as "removed all the no-longer-needed comments". Some minutes after, I realise that I've forgot to remove some comments of that kind. I'd like to be able to update that commit I did some minutes ago instead of having to do a new one.

Is it possible to do something like this?

link|improve this question

feedback

4 Answers

Assuming that you haven't pushed and haven't done any more commits, you can just use hg rollback.

link|improve this answer
feedback

The MQ extension enables you to do that. But keep in mind that technically, this creates a new changeset and removes the existing one, so if you have already pushed your previous changeset to an "official"/shared repository, you're out of luck.

I routinely do exactly what you describe here like this:

$ hg qimport -r tip  
$ hg qrefresh -e # edit commit message  
$ hg qfinish -a
link|improve this answer
1  
You should add a warning that you need to do this before pushing this commit elsewhere. If you do that, and edit the commit, you're in for a heap of trouble. – Lasse V. Karlsen Dec 9 '10 at 11:06
@Lasse: That should go without saying ;). But you're right. – Ringding Dec 9 '10 at 11:07
Am I the only one who doesn't "get" the mq extension? Honestly I've tried. Any good tutorials for it that aren't 5 pages long? – Kyle Heironimus Dec 9 '10 at 18:02
Kyle: the histedit extension may be more suited for you. – Laurens Holst Dec 10 '10 at 19:10
1  
@Kyle: The "problem" with MQ is that it turns some basic hg concepts/practices around, esp. immutable changeset and DAG. It took me a few days to "get" it, but it's invaluable once you do. I think the best/quickest way is to understand how exactly it works, which is actually very simple: just a list of patch files that can be turned into changesets. (To be continued due to comment length limit...) – Geoffrey Zheng Dec 11 '10 at 4:10
show 3 more comments
feedback

The histedit extension lets you do this.

Like with MQ, you shouldn't edit it if you've pushed elsewhere, but if you haven't, you can do hg histedit REV which will list all the changesets between that rev and now, and you select which you want to change. Then, histedit backs you up to the earliest ones, and when you've made your changes, you run hg histedit --continue. Wash, rinse, repeat.

link|improve this answer
feedback

If you're sharing your repository, save everyone some headaches and don't try to do this.

link|improve this answer
I'm doing it all alone. – devoured elysium Dec 9 '10 at 18:00
Then that's fine. I'd go with using the repository explorer in TortoiseHg. Go to the revision in question, right-click and select Mercurial Queues > Import Revision to MQ. Make your changes, refresh the patch in the Commit dialog, then finish the patch into a new commit. Haven't done this myself but it should work. You'll probably need to do the import prior to your updates, or use shelve to temporarily move them out of the way. – Binary Phile Dec 9 '10 at 19:48
feedback

Your Answer

 
or
required, but never shown

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