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.
有没有办法在JavaHg中获取Changeset对象的标签列表?
Changeset
您可以使用 TagsCommand 获取所有标签
Map<String,Changeset> tagMap = TagsCommand.on(repo).execute();
然后,您必须遍历地图并搜索有问题的变更集。