Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between the mercurial commands,

  • hg strip
  • hg backout
  • hg revert

All these commands basically are used to revert/undo the effects of an earlier changeset.

share|improve this question

1 Answer

up vote 9 down vote accepted

hg strip removes the changeset and all its descendants from the repository. It will be as if the changes never existed. Be careful when using this on public changesets as it will not remove it from any other repository and you'll get them back next time you pull.

hg backout creates a new changeset to reverse the effect of an earlier changeset. The old changeset will still remain in the repository but so will a new changeset to remove the changes.

hg revert with a revision updates the working copy to the specified revision. If you then commit that working copy it will have the effect of reverting all changes since.

Other answers with more info on revert and backout:

share|improve this answer
1  
Good answer. May be worth pointing out that strip will not remove the changesets from "pushed" repos - they are already public, and will (probably) come back to your local repo when you pull. – icabod Jan 4 at 11:58
Thanks - I've added that warning now. – Steve Kaye Jan 4 at 13:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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