如何使用 JavaHg 获取工作文件夹信息?
如何确定存储库当前工作目录所在的变更集? hgidentity
和 hgsummary
似乎尚未在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行以下操作:
WorkingCopy
对象还有一个getParent2()
方法,如果您处于合并状态,则该方法为非空...You can do something like this:
The
WorkingCopy
object also has agetParent2()
method that is non-null if you are in a merge...