equal
deleted
inserted
replaced
146 To use a plain path name without any pattern matching, start it with |
146 To use a plain path name without any pattern matching, start it with |
147 "path:". These path names must completely match starting at the current |
147 "path:". These path names must completely match starting at the current |
148 repository root. |
148 repository root. |
149 |
149 |
150 To use an extended glob, start a name with "glob:". Globs are rooted at |
150 To use an extended glob, start a name with "glob:". Globs are rooted at |
151 the current directory; a glob such as "*.c" will only match files in the |
151 the current directory; a glob such as "``*.c``" will only match files in the |
152 current directory ending with ".c". |
152 current directory ending with ".c". |
153 |
153 |
154 The supported glob syntax extensions are "**" to match any string across |
154 The supported glob syntax extensions are "``**``" to match any string across |
155 path separators and "{a,b}" to mean "a or b". |
155 path separators and "{a,b}" to mean "a or b". |
156 |
156 |
157 To use a Perl/Python regular expression, start a name with "re:". Regexp |
157 To use a Perl/Python regular expression, start a name with "re:". Regexp |
158 pattern matching is anchored at the root of the repository. |
158 pattern matching is anchored at the root of the repository. |
159 |
159 |