我如何显示不包括标记的标记修订的后代?

How can i show descendants of tagged revision excluding the tag?

用命令

hg log --rev "descendants(last(tagged()))"

我从最后一个标签 获得所有变更集的列表,包括 标记的变更集。如何排除后者?

descendants(children(last(tagged())))

last(tagged()) 为您提供标签变更集。 和 children returns 直接 child(或 children)标记的变更集。

descendants 留给 return 标签 child 的所有后代 children。