I want to completely delete a Mercurial commit as if it was never entered in the repository and move back to my prior commit.

Is this possible?

link|improve this question
feedback

4 Answers

You can use "hg backout" to do a reverse merge basically. All options are discussed in the freely available book "Mercurial: The Definitive Guide":

http://hgbook.red-bean.com/read/finding-and-fixing-mistakes.html

link|improve this answer
I realize my suggestion doesn't delete the commit but the link does talk about all options, including the "hg rollback" option nmichaels suggested. – Jeremy Whitlock Feb 22 '11 at 22:48
Generally I like this solution. It's alright to admit your mistakes and keep a history of your bad commits, as well as the fact that you backed them. – Kamil Kisiel Feb 23 '11 at 2:55
feedback

If it was your last commit and you haven't pushed it anywhere, you can do that with rollback. Otherwise, no. Not really. Time to change your passwords.

Edit: It has been pointed out that you can clone from an older revision and merge in the changes you want to keep. That's also true, unless you have pushed it to a repo you don't control. Once you push, your data is very likely to be very hard to get back.

link|improve this answer
haha I have accidentally done that (there goes my ssh private key) – Adam Gent Feb 23 '11 at 0:27
feedback

If it's more than one commit and/or you already pushed it somewhere else, you can clone your repository and specify the last changeset that should be cloned.

See my answer here how to do this:
Mercurial: Fix a borked history

If you only committed locally and didn't push, you can just create a clone locally (as described in my link) and you're done.

If you already pushed to some remote repository, you would have to replace that with your clone.
Of course it depends if you are able (or allowed) to do this.

link|improve this answer
feedback

You can try to remove mq info about your commit.

  • For this you need to go File->Settings->Extensions.
  • There check mq and restart gui.
  • After that just right click on unneeded commit and ModifyHistory->Strip
link|improve this answer
Thanks a lot!! Works as designed :) – davs Jan 30 at 13:27
feedback

Your Answer

 
or
required, but never shown

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