如何在 Mercurial 中回滚最后 n 次提交

发布于 2025-01-02 17:41:58 字数 39 浏览 0 评论 0原文

我有一个要求,需要回滚最后 10 次提交。我该怎么办呢。请帮忙。

I have got a requirement where I need to rollback last 10 commits. How can I do it. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

万劫不复 2025-01-09 17:41:58

最简单的事情是克隆存储库,直到您想要保留的最后一次提交。

hg clone -r last_commit_to_keep myrepo mynewrepo

The easiest thing would be to clone the repo until the last commit you want to keep.

hg clone -r last_commit_to_keep myrepo mynewrepo
客…行舟 2025-01-09 17:41:58

如果您尚未推送,则可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文