hg 语法的作用是什么:commit A “reachable”?来自提交 B

发布于 2025-01-07 05:27:14 字数 83 浏览 0 评论 0原文

我的存储库的历史非常复杂。我经常发现自己想知道过去的某个提交是否“存在”或“可从”某个修订(通常是我的头脑之一)“到达”,

我该怎么做?

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 技术交流群。

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

发布评论

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

评论(1

三五鸿雁 2025-01-14 05:27:14

您可以使用revsets 语法。假设您想询问修订版 4 是否与修订版 9 相比“可访问”。

只需执行以下操作:

hg log -r "descendants(4) and 9"

如果可访问,您将看到修订版 9 的日志消息。如果不是,则不会有输出。

You can use the revsets syntax. Suppose you want to ask if revision 4 is "reachable" from revision 9.

Simply do this:

hg log -r "descendants(4) and 9"

if it is reachable, you will see the log message for revision 9. If it is not, there will be no output.

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