##// END OF EJS Templates
doc: use titlecase in man page section titles
doc: use titlecase in man page section titles

File last commit:

r9792:dd1a95cc default
r9792:dd1a95cc default
Show More
hgignore.5.txt
111 lines | 3.1 KiB | text/plain | TextLexer
Martin Geisler
doc: use reStructuredText for man and HTML pages...
r9158 ==========
hgignore
==========
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
Martin Geisler
doc: use reStructuredText for man and HTML pages...
r9158 ---------------------------------
syntax for Mercurial ignore files
---------------------------------
:Author: Vadim Gelfer <vadim.gelfer@gmail.com>
:Organization: Mercurial
:Manual section: 5
:Manual group: Mercurial Manual
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
Martin Geisler
doc: use titlecase in man page section titles
r9792 Synopsis
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 --------
Martin Geisler
doc: use reStructuredText for man and HTML pages...
r9158 The Mercurial system uses a file called ``.hgignore`` in the root
Henri Wiechers
hgignore.5.txt: improved description of matching...
r9127 directory of a repository to control its behavior when it searches
for files that it is not currently tracking.
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
Martin Geisler
doc: use titlecase in man page section titles
r9792 Description
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 -----------
Martin Geisler
hgignore.5: expanded description...
r9182 The working directory of a Mercurial repository will often contain
files that should not be tracked by Mercurial. These include backup
files created by editors and build products created by compilers.
Martin Geisler
hgignore.5: mark file names and cmdline options as literal text
r9194 These files can be ignored by listing them in a ``.hgignore`` file in
the root of the working directory. The ``.hgignore`` file must be
Martin Geisler
hgignore.5: expanded description...
r9182 created manually. It is typically put under version control, so that
the settings will propagate to other repositories with push and pull.
Henri Wiechers
hgignore.5.txt: improved description of matching...
r9127 An untracked file is ignored if its path relative to the repository
root directory, or any prefix path of that path, is matched against
Martin Geisler
hgignore.5: mark file names and cmdline options as literal text
r9194 any pattern in ``.hgignore``.
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
Martin Geisler
doc: fixup font markup in man pages...
r9161 For example, say we have an an untracked file, ``file.c``, at
``a/b/file.c`` inside our repository. Mercurial will ignore ``file.c``
if any pattern in ``.hgignore`` matches ``a/b/file.c``, ``a/b`` or ``a``.
Henri Wiechers
hgignore.5.txt: improved description of matching...
r9127
In addition, a Mercurial configuration file can reference a set of
Martin Geisler
doc: link man pages to one another
r9162 per-user or global ignore files. See the |hgrc(5)|_ man page for details
Christian Ebert
asciidoc: consistently use 1 space after full stop...
r6446 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.
Henri Wiechers
hgignore.5.txt: improved description of matching...
r9127 To control Mercurial's handling of files that it manages, see the
Martin Geisler
doc, help: stream-line use of inline-literals
r9624 |hg(1)|_ man page. Look for the ``-I`` and ``-X`` options.
Henri Wiechers
hgignore.5.txt: improved description of matching...
r9127
Martin Geisler
doc: use titlecase in man page section titles
r9792 Syntax
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 ------
An ignore file is a plain text file consisting of a list of patterns,
Martin Geisler
doc, help: stream-line use of inline-literals
r9624 with one pattern per line. Empty lines are skipped. The ``#``
character is treated as a comment character, and the ``\`` character
Martin Geisler
doc: wrap man pages after fixing quoting
r8782 is treated as an escape character.
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
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.
Martin Geisler
doc: use reStructuredText for man and HTML pages...
r9158 To change the syntax used, use a line of the following form::
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
Martin Geisler
doc: use reStructuredText for man and HTML pages...
r9158 syntax: NAME
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
Martin Geisler
doc: use reStructuredText for man and HTML pages...
r9158 where ``NAME`` is one of the following:
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
Martin Geisler
doc: use reStructuredText for man and HTML pages...
r9158 ``regexp``
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 Regular expression, Python/Perl syntax.
Martin Geisler
doc: use reStructuredText for man and HTML pages...
r9158 ``glob``
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 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
Martin Geisler
doc, help: stream-line use of inline-literals
r9624 the form ``*.c`` will match a file ending in ``.c`` in any directory,
and a regexp pattern of the form ``\.c$`` will do the same. To root a
regexp pattern, start it with ``^``.
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
Martin Geisler
doc: use titlecase in man page section titles
r9792 Example
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 -------
Martin Geisler
doc: use reStructuredText for man and HTML pages...
r9158 Here is an example ignore file. ::
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
# use glob syntax.
syntax: glob
*.elc
*.pyc
*~
# switch to regexp syntax.
syntax: regexp
^\.pc/
Martin Geisler
doc: use titlecase in man page section titles
r9792 Author
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 ------
Vadim Gelfer <vadim.gelfer@gmail.com>
Mercurial was written by Matt Mackall <mpm@selenic.com>.
Martin Geisler
doc: use titlecase in man page section titles
r9792 See Also
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 --------
Martin Geisler
doc: link man pages to one another
r9162 |hg(1)|_, |hgrc(5)|_
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209
Martin Geisler
doc: use titlecase in man page section titles
r9792 Copying
Vadim Gelfer
document hgignore syntax in new file doc/hgignore.5.txt....
r2209 -------
This manual page is copyright 2006 Vadim Gelfer.
Martin Geisler
man pages: updated copyright years
r8771 Mercurial is copyright 2005-2009 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
Adrian Buehlmann
doc: clarify license footers...
r9510 Public License version 2.
Martin Geisler
doc: link man pages to one another
r9162
.. include:: common.txt