Rollback multiple commits (before Pushed to public) in Mercurial

后端 未结 3 2125
别跟我提以往
别跟我提以往 2021-02-12 18:53

I am aware that rollbacks can remove commits from the latest changeset in a local repository. However, is it possible to remove all the latest commits since the previous push wi

3条回答
  •  醉话见心
    2021-02-12 19:42

    You could make a new repo with hg clone:

    hg clone -r last_good_changeset localrepo newlocalrepo
    

提交回复
热议问题