HG: Undo a commit from history

前端 未结 2 1730
温柔的废话
温柔的废话 2020-12-29 03:07

I have a HG repository with revs 1, 2, 3, 4, 5 and 6.

When I committed rev 4, I unknowingly botched some changes in rev3 that I should not have. I did not notice th

相关标签:
2条回答
  • 2020-12-29 03:37

    You want hg backout

    Revert/undo the effect of an earlier changeset...

    Backout works by applying a changeset that's the opposite of the changeset to be backed out. That new changeset is committed to the repository, and eventually merged...

    0 讨论(0)
  • 2020-12-29 03:37

    You can use the MQ extension:

    hg qinit
    hg qimport -r 4:tip
    hg qpop -a
    hg qdelete 4.diff
    hg qpush -a
    hg qfinish -a
    

    The above is how you rewrite history, which is what you want I believe.

    You can also use hg backout but that undoes a commit in your working directory and you can commit that.

    0 讨论(0)
提交回复
热议问题