##// END OF EJS Templates
manpage build: fail early when xmlto is not available...
manpage build: fail early when xmlto is not available When we try to build manpages with xmlto and sed, but xmlto is missing fail at the xmlto stage. Otherwise, one may run `cd doc; make' and miss the warnings like: xmlto: not found sed: hg.1: No such file or directory and end up with empty files installed as manpages.

File last commit:

r6490:b13dae8e merge default
r8311:e0eb03bf default
Show More
hgignore.5.txt
91 lines | 2.2 KiB | text/plain | TextLexer
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 HGIGNORE(5)
===========
Vadim Gelfer <vadim.gelfer@gmail.com>
NAME
----
hgignore - syntax for Mercurial ignore files
SYNOPSIS
--------
The Mercurial system uses a file called .hgignore in the root
directory of a repository to control its behavior when it finds files
that it is not currently managing.
DESCRIPTION
-----------
Mercurial ignores every unmanaged file that matches any pattern in an
Christian Ebert
asciidoc: consistently use 1 space after full stop...
r6446 ignore file. The patterns in an ignore file do not apply to files
managed by Mercurial. To control Mercurial's handling of files that
it manages, see the hg(1) man page. Look for the "-I" and "-X"
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 options.
In addition, a Mercurial configuration file can point to a set of
Christian Ebert
asciidoc: consistently use 1 space after full stop...
r6446 per-user or global ignore files. See the hgrc(5) man page for details
of how to configure these files. Look for the "ignore" entry in the
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 "ui" section.
SYNTAX
------
An ignore file is a plain text file consisting of a list of patterns,
Christian Ebert
asciidoc: consistently use 1 space after full stop...
r6446 with one pattern per line. Empty lines are skipped. The "#"
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 character is treated as a comment character, and the "\" character is
treated as an escape character.
Christian Ebert
asciidoc: consistently use 1 space after full stop...
r6446 Mercurial supports several pattern syntaxes. The default syntax used
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 is Python/Perl-style regular expressions.
To change the syntax used, use a line of the following form:
syntax: NAME
where NAME is one of the following:
regexp::
Regular expression, Python/Perl syntax.
glob::
Shell-style glob.
The chosen syntax stays in effect when parsing all patterns that
follow, until another syntax is selected.
Christian Ebert
asciidoc: consistently use 1 space after full stop...
r6446 Neither glob nor regexp patterns are rooted. A glob-syntax pattern of
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 the form "*.c" will match a file ending in ".c" in any directory, and
Christian Ebert
asciidoc: consistently use 1 space after full stop...
r6446 a regexp pattern of the form "\.c$" will do the same. To root a
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 regexp pattern, start it with "^".
EXAMPLE
-------
Here is an example ignore file.
# use glob syntax.
syntax: glob
*.elc
*.pyc
*~
# switch to regexp syntax.
syntax: regexp
^\.pc/
AUTHOR
------
Vadim Gelfer <vadim.gelfer@gmail.com>
Mercurial was written by Matt Mackall <mpm@selenic.com>.
SEE ALSO
--------
hg(1), hgrc(5)
COPYING
-------
This manual page is copyright 2006 Vadim Gelfer.
Thomas Arendsen Hein
Updated copyright notices and add "and others" to "hg version"
r4635 Mercurial is copyright 2005-2007 Matt Mackall.
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 Free use of this software is granted under the terms of the GNU General
Public License (GPL).