Mercurial - 使用 hg log 查看所有后代
要查看变更集的所有祖先您可以使用 hg log -r :xyz
。如何查看变更集的所有后代?
To view all ancestors of a changeset you can use hg log -r :xyz
. How can you view all descendants of a changeset?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用较新的 Mercurial,则可以使用
hg log -r 'descendants(xyz)'
或hg log -r xyz::
。If you use newer mercurial you can use
hg log -r 'descendants(xyz)'
orhg log -r xyz::
.从控制台来看,我不确定。但是,如果我需要这样做,我会开始:
然后查看 Mercurial 将在浏览器中生成的图表。
From the console, I am not sure. However if I need to do this I start:
and then view the graph that Mercurial will generate in a browser.