如何使用 JavaHg 获取工作文件夹信息?

发布于 2025-01-04 13:34:35 字数 228 浏览 0 评论 0原文

如何确定存储库当前工作目录所在的变更集? hgidentityhgsummary 似乎尚未在 JavaHg 中实现。

第三种替代方案,hgParents已实现,但似乎与命令行版本的工作方式不完全一样 - 它看起来像它显示了我所基于的父母,但不是我实际的变更集基于. (命令行上的 hgparents 显示两者...)

How can I determine what changeset the current working directory of the repository is on?
hg identity and hg summary do not yet appear to be implemented in JavaHg.

A third alternative, hg parents is implemented, but doesn't appear to work exactly like the command line version — it looks like it shows the parents I am based off of, but not the actual changeset I am based off of. (hg parents on command line shows both...)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

尘曦 2025-01-11 13:34:35

您可以执行以下操作:

Repository repo = ...
Changeset parent = repo.workingCopy().getParent1();

WorkingCopy 对象还有一个 getParent2() 方法,如果您处于合并状态,则该方法为非空...

You can do something like this:

Repository repo = ...
Changeset parent = repo.workingCopy().getParent1();

The WorkingCopy object also has a getParent2() method that is non-null if you are in a merge...

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