comparison doc/hgignore.5.txt @ 8780:73728f5f69ab

hgignore.5: remove extra quotes The so-called "unconstrained quotes" didn't really work, so I reverted them to normal quotes. Tested with asciidoc version 8.2.7 and 8.4.5.
author Martin Geisler <mg@lazybytes.net>
date Thu, 11 Jun 2009 17:16:04 +0200
parents 012be286b2c4
children d19ab9a56bf4
comparison
equal deleted inserted replaced
8779:708938509732 8780:73728f5f69ab
30 30
31 SYNTAX 31 SYNTAX
32 ------ 32 ------
33 33
34 An ignore file is a plain text file consisting of a list of patterns, 34 An ignore file is a plain text file consisting of a list of patterns,
35 with one pattern per line. Empty lines are skipped. The "``#``" character 35 with one pattern per line. Empty lines are skipped. The "`#`" character
36 is treated as a comment character, and the "``\``" character is treated as 36 is treated as a comment character, and the "`\`" character is treated as
37 an escape character. 37 an escape character.
38 38
39 Mercurial supports several pattern syntaxes. The default syntax used 39 Mercurial supports several pattern syntaxes. The default syntax used
40 is Python/Perl-style regular expressions. 40 is Python/Perl-style regular expressions.
41 41
52 52
53 The chosen syntax stays in effect when parsing all patterns that 53 The chosen syntax stays in effect when parsing all patterns that
54 follow, until another syntax is selected. 54 follow, until another syntax is selected.
55 55
56 Neither glob nor regexp patterns are rooted. A glob-syntax pattern of 56 Neither glob nor regexp patterns are rooted. A glob-syntax pattern of
57 the form "``*.c``" will match a file ending in "``.c``" in any directory, and 57 the form "`*.c`" will match a file ending in "`.c`" in any directory, and
58 a regexp pattern of the form "``\.c$``" will do the same. To root a regexp 58 a regexp pattern of the form "`\.c$`" will do the same. To root a regexp
59 pattern, start it with "``^``". 59 pattern, start it with "`^`".
60 60
61 EXAMPLE 61 EXAMPLE
62 ------- 62 -------
63 63
64 Here is an example ignore file. 64 Here is an example ignore file.