##// END OF EJS Templates
help: use Windows cmd compatible quoting in revset help
Mads Kiilerich -
r12808:74f65315 stable
parent child Browse files
Show More
@@ -178,26 +178,26 b' Some sample queries:'
178
178
179 - Changesets on the default branch::
179 - Changesets on the default branch::
180
180
181 hg log -r 'branch(default)'
181 hg log -r "branch(default)"
182
182
183 - Changesets on the default branch since tag 1.5 (excluding merges)::
183 - Changesets on the default branch since tag 1.5 (excluding merges)::
184
184
185 hg log -r 'branch(default) and 1.5:: and not merge()'
185 hg log -r "branch(default) and 1.5:: and not merge()"
186
186
187 - Open branch heads::
187 - Open branch heads::
188
188
189 hg log -r 'head() and not closed()'
189 hg log -r "head() and not closed()"
190
190
191 - Changesets between tags 1.3 and 1.5 mentioning "bug" that affect
191 - Changesets between tags 1.3 and 1.5 mentioning "bug" that affect
192 ``hgext/*``::
192 ``hgext/*``::
193
193
194 hg log -r '1.3::1.5 and keyword(bug) and file("hgext/*")'
194 hg log -r "1.3::1.5 and keyword(bug) and file('hgext/*')"
195
195
196 - Changesets in committed May 2008, sorted by user::
196 - Changesets in committed May 2008, sorted by user::
197
197
198 hg log -r 'sort(date("May 2008"), user)'
198 hg log -r "sort(date('May 2008'), user)"
199
199
200 - Changesets mentioning "bug" or "issue" that are not in a tagged
200 - Changesets mentioning "bug" or "issue" that are not in a tagged
201 release::
201 release::
202
202
203 hg log -r '(keyword(bug) or keyword(issue)) and not ancestors(tagged())'
203 hg log -r "(keyword(bug) or keyword(issue)) and not ancestors(tagged())"
General Comments 0
You need to be logged in to leave comments. Login now