如何比较 2 个 Mercurial 分支之间的变更集集?

发布于 2024-10-08 20:44:13 字数 176 浏览 2 评论 0原文

我有一个(远程)汞存储库,有几个分支。我想验证分支 A 是否拥有分支 B 拥有的每个变更集(可能有更多,没关系)。

有没有一种简单的方法可以只用 hg 来做到这一点?

我可以编写一个小 shell 脚本来完成它,但这似乎是一种可能会出现很多次的事情,所以也许有一个简单的内置方法。

I've got a (remote) Hg repository with a couple branches. I want to verify that branch A has every changeset that branch B has (it may have more, and that's OK).

Is there an easy way to do this with just hg?

I can write a little shell script to do it, but it seems like the sort of thing that might come up a lot, so maybe there's an easy built-in way.

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

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

发布评论

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

评论(1

晌融 2024-10-15 20:44:13

这将显示变更集 b 的所有祖先,这些祖先不是变更集 a 的祖先:

hg log -r "ancestors(b) and not ancestors(a)"

这应该显示如果您给出以下内容,哪些更改仍需要从 B 合并到 A b 为分支 B 的头部,a 为分支 A 的头部。

This will show any ancestors of changeset b which are not an ancestor of changeset a:

hg log -r "ancestors(b) and not ancestors(a)"

This should show you which changes still need to be merged from B to A if you give the head of branch B for b, and the head of branch A for a.

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