Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何确定存储库的当前工作目录所在的变更集? hg identity并且hg summary似乎尚未在 JavaHg 中实现。
hg identity
hg summary
第三种替代方案hg parents已实现,但似乎与命令行版本的工作方式不完全一样——它看起来像是显示了我所基于的父母,而不是我所基于的实际变更集。(hg parents在命令行上同时显示...)
hg parents
你可以这样做:
Repository repo = ... Changeset parent = repo.workingCopy().getParent1();
如果您在合并中,该WorkingCopy对象还有一个getParent2()非空方法...
WorkingCopy
getParent2()