hg 语法的作用是什么:commit A “reachable”?来自提交 B
我的存储库的历史非常复杂。我经常发现自己想知道过去的某个提交是否“存在”或“可从”某个修订(通常是我的头脑之一)“到达”,
我该怎么做?
The history of my repository is very complex. I often find myself wanting to know if a certain commit from the past "is in" or "is reachable from" a certain revision (usually one of my heads)
How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用revsets 语法。假设您想询问修订版 4 是否与修订版 9 相比“可访问”。
只需执行以下操作:
如果可访问,您将看到修订版 9 的日志消息。如果不是,则不会有输出。
You can use the revsets syntax. Suppose you want to ask if revision 4 is "reachable" from revision 9.
Simply do this:
if it is reachable, you will see the log message for revision 9. If it is not, there will be no output.