# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1606481894 -19800 # Node ID aa4440e59c44073607fe54046febcc8c293696a5 # Parent 91425656e2b128495dd6e8cbea6f3b434e897e45 helptext: mention in `hg help config` that `.hg/hgrc-not-shared` is consulted Recently we added `.hg/hgrc-not-shared` which is a config file which won't be shared with shares when share-safe mode is enabled. Irrespective of whether we are using share-safe or not, we consult this file now. Let's document that. Differential Revision: https://phab.mercurial-scm.org/D9412 diff -r 91425656e2b1 -r aa4440e59c44 mercurial/helptext/config.txt --- a/mercurial/helptext/config.txt Fri Nov 27 18:11:47 2020 +0530 +++ b/mercurial/helptext/config.txt Fri Nov 27 18:28:14 2020 +0530 @@ -54,6 +54,7 @@ On Unix, the following files are consulted: + - ``/.hg/hgrc-not-shared`` (per-repository) - ``/.hg/hgrc`` (per-repository) - ``$HOME/.hgrc`` (per-user) - ``${XDG_CONFIG_HOME:-$HOME/.config}/hg/hgrc`` (per-user) @@ -67,6 +68,7 @@ On Windows, the following files are consulted: + - ``/.hg/hgrc-not-shared`` (per-repository) - ``/.hg/hgrc`` (per-repository) - ``%USERPROFILE%\.hgrc`` (per-user) - ``%USERPROFILE%\Mercurial.ini`` (per-user) @@ -89,6 +91,7 @@ On Plan9, the following files are consulted: + - ``/.hg/hgrc-not-shared`` (per-repository) - ``/.hg/hgrc`` (per-repository) - ``$home/lib/hgrc`` (per-user) - ``/lib/mercurial/hgrc`` (per-installation)