Mercurial > hg
view help/config.txt @ 9785:b52f0f221325
help: add "hg help config" topic
This is a condensed version of the first two sections of hgrc.5.txt.
After a slight upgrade of minirst, we can move the whole of hgrc.5.txt
into the config help topic and just let the man page include it.
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sat, 07 Nov 2009 22:12:50 +0100 |
parents | |
children |
line wrap: on
line source
Mercurial reads configuration data from several files, if they exist. Below we list the most specific file first. On Windows, these configuration files are read: - ``<repo>\.hg\hgrc`` - ``%USERPROFILE%\.hgrc`` - ``%USERPROFILE%\Mercurial.ini`` - ``%HOME%\.hgrc`` - ``%HOME%\Mercurial.ini`` - ``C:\Mercurial\Mercurial.ini`` - ``HKEY_LOCAL_MACHINE\SOFTWARE\Mercurial`` - ``<install-dir>\Mercurial.ini`` On Unix, these files are read: - ``<repo>/.hg/hgrc`` - ``$HOME/.hgrc`` - ``/etc/mercurial/hgrc`` - ``/etc/mercurial/hgrc.d/*.rc`` - ``<install-root>/etc/mercurial/hgrc`` - ``<install-root>/etc/mercurial/hgrc.d/*.rc`` The configuration files for Mercurial use a simple ini-file format. A configuration file consists of sections, led by a ``[section]`` header and followed by ``name = value`` entries:: [ui] username = Firstname Lastname <firstname.lastname@example.net> verbose = True This above entries will be referred to as ``ui.username`` and ``ui.verbose``, respectively. Please see the hgrc man page for a full description of the possible configuration values: - on Unix-like systems: ``man hgrc`` - online: http://www.selenic.com/mercurial/hgrc.5.html