如何在 Mercurial 中回滚最后 n 次提交
我有一个要求,需要回滚最后 10 次提交。我该怎么办呢。请帮忙。
I have got a requirement where I need to rollback last 10 commits. How can I do it. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的事情是克隆存储库,直到您想要保留的最后一次提交。
The easiest thing would be to clone the repo until the last commit you want to keep.
如果您尚未推送,则可以使用 Strip 扩展。
如果您已推送,那么最好取消提交。
撤销提交会产生与被删除的提交完全相反的额外提交,该提交会附加到存储库中。因此,您仍然可以在存储库历史记录中看到原始提交。
If you haven't yet pushed, then you can use the Strip extension.
If you have pushed then It would be better to backout the commits.
Backing out a commit makes an additional commit of the exact opposite of the commit being removed, which gets appended to the repo. Hence you can still see the original commits in the repo history.