Mercurial:变基后如何恢复

发布于 2024-12-16 13:01:13 字数 70 浏览 0 评论 0原文

我不小心使用 --rebase 参数从主存储库中提取了一些更改。

如何从变基期间创建的备份恢复原始存储库状态?

I've accidentally pulled some changes from the main repo with --rebase parameter.

How do I restore the original repository state from the backup which was created during the rebase?

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

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

发布评论

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

评论(1

夏见 2024-12-23 13:01:13

hg unbundle 用于应用备份文件:

hg unbundle .hg/strip-backup/e64394fd5837-backup.hg

但是,这不会删除 rebase 创建的新变更集;从没有重新设置基础的变更集(即从服务器克隆最新版本)的存储库中调用hg unbundle可能是个好主意。

hg unbundle is used to apply the backup file:

hg unbundle .hg/strip-backup/e64394fd5837-backup.hg

However, this does not remove the new changesets that have been created by the rebase; it is probably a good idea to call hg unbundle from a repo that does not have the rebased changesets (i.e. clone latest version from server).

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