comparison mercurial/help/revsets.txt @ 18469:ddbe689af784 stable

doc: use "tag" revset predicate instead of "tagged" for example in help "tag" predicate is officially described in help, but "tagged" is not, even though the latter works as same as the former.
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Thu, 24 Jan 2013 00:21:22 +0900
parents f7c8d6ee6056
children 3a4d8a6ce432
comparison
equal deleted inserted replaced
18468:275224c6e89c 18469:ddbe689af784
116 hg log -r "sort(date('May 2008'), user)" 116 hg log -r "sort(date('May 2008'), user)"
117 117
118 - Changesets mentioning "bug" or "issue" that are not in a tagged 118 - Changesets mentioning "bug" or "issue" that are not in a tagged
119 release:: 119 release::
120 120
121 hg log -r "(keyword(bug) or keyword(issue)) and not ancestors(tagged())" 121 hg log -r "(keyword(bug) or keyword(issue)) and not ancestors(tag())"