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?
|
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? | |||
|
feedback
|
|
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 | |||||
feedback
|
|
If it was your last commit and you haven't pushed it anywhere, you can do that with 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. | ||||
|
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: 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. | |||
|
feedback
|
|
You can try to remove mq info about your commit.
| |||
|
feedback
|