comparison mercurial/help/config.txt @ 11408:534c69494918

Explain trust near hgrc in config help
author timeless <timeless@gmail.com>
date Fri, 21 May 2010 12:51:55 +0300
parents 6a539853d4c0
children 86b5cc1e8be8
comparison
equal deleted inserted replaced
11407:f5be44090ba8 11408:534c69494918
20 - ``/etc/mercurial/hgrc`` 20 - ``/etc/mercurial/hgrc``
21 - ``/etc/mercurial/hgrc.d/*.rc`` 21 - ``/etc/mercurial/hgrc.d/*.rc``
22 - ``<install-root>/etc/mercurial/hgrc`` 22 - ``<install-root>/etc/mercurial/hgrc``
23 - ``<install-root>/etc/mercurial/hgrc.d/*.rc`` 23 - ``<install-root>/etc/mercurial/hgrc.d/*.rc``
24 24
25 If there is a per-repository configuration file which is not owned by
26 the active user, Mercurial will warn you that the file is skipped::
27
28 not trusting file <repo>/.hg/hgrc from untrusted user USER, group GROUP
29
30 If this bothers you, the warning can be silenced (the file would still
31 be ignored) or trust can be established. Use one of the following
32 settings, the syntax is explained below:
33
34 - ``ui.report_untrusted = False``
35 - ``trusted.users = USER``
36 - ``trusted.groups = GROUP``
37
25 The configuration files for Mercurial use a simple ini-file format. A 38 The configuration files for Mercurial use a simple ini-file format. A
26 configuration file consists of sections, led by a ``[section]`` header 39 configuration file consists of sections, led by a ``[section]`` header
27 and followed by ``name = value`` entries:: 40 and followed by ``name = value`` entries::
28 41
29 [ui] 42 [ui]