命名分支之间的合并 Mercurial 日志
我有一个 PowerShell 脚本,它可以查找将两个命名分支合并在一起的修订。它循环遍历特定分支上的所有合并,显示在另一个命名分支上具有父级的变更集。
是否有一个 hg log
命令可以执行相同的操作?我尝试过 Mercurial 的 revsets 功能(hg help revsets
),但似乎找不到神奇的咒语。
I've got a PowerShell script that finds revisions that merged two named branches together. It loops through all the merges on a particular branch, showing changesets that have a parent on the other named branch.
Is there an hg log
command that will do the equivalent? I've played around with Mercurial's revsets feature (hg help revsets
), but can't seem to find the magical incantation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用它:
这将输出以下所有变更集:
You can use this:
This will output all changesets that are: