如何比较 2 个 Mercurial 分支之间的变更集集?
我有一个(远程)汞存储库,有几个分支。我想验证分支 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将显示变更集
b
的所有祖先,这些祖先不是变更集a
的祖先:这应该显示如果您给出以下内容,哪些更改仍需要从 B 合并到 A b 为分支 B 的头部,a 为分支 A 的头部。
This will show any ancestors of changeset
b
which are not an ancestor of changeseta
: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.