comparison mercurial/help/revsets.txt @ 12660:6ed5ae6264c2

revsets: add a sample query to the help for getting active branches
author Brodie Rao <brodie@bitheap.org>
date Sat, 09 Oct 2010 11:55:25 -0500
parents 5aa5cbaf6efc
children f5735bb80d77
comparison
equal deleted inserted replaced
12659:5aa5cbaf6efc 12660:6ed5ae6264c2
176 176
177 - Changesets on the default branch since tag 1.5 (excluding merges):: 177 - Changesets on the default branch since tag 1.5 (excluding merges)::
178 178
179 hg log -r 'branch(default) and 1.5:: and not merge()' 179 hg log -r 'branch(default) and 1.5:: and not merge()'
180 180
181 - Open branch heads::
182
183 hg log -r 'head() and not closed()'
184
181 - Changesets between tags 1.3 and 1.5 mentioning "bug" that affect 185 - Changesets between tags 1.3 and 1.5 mentioning "bug" that affect
182 hgext/*:: 186 hgext/*::
183 187
184 hg log -r '1.3::1.5 and keyword(bug) and file("hgext/*")' 188 hg log -r '1.3::1.5 and keyword(bug) and file("hgext/*")'
185 189