D8073: config: also respect HGRCSKIPREPO in `dispatch._getlocal`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Tue Feb 4 22:50:29 UTC 2020
marmoute created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.
REVISION SUMMARY
For some reason, we are also reading the local config in that function.
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D8073
AFFECTED FILES
mercurial/dispatch.py
tests/test-hgrc.t
CHANGE DETAILS
diff --git a/tests/test-hgrc.t b/tests/test-hgrc.t
--- a/tests/test-hgrc.t
+++ b/tests/test-hgrc.t
@@ -271,3 +271,13 @@
$ HGRCSKIPREPO=1 hg path
foo = $TESTTMP/bar
+ $ cat >> .hg/hgrc <<EOF
+ > [broken
+ > EOF
+
+ $ hg path
+ hg: parse error at $TESTTMP/.hg/hgrc:3: [broken
+ [255]
+ $ HGRCSKIPREPO=1 hg path
+ foo = $TESTTMP/bar
+
diff --git a/mercurial/dispatch.py b/mercurial/dispatch.py
--- a/mercurial/dispatch.py
+++ b/mercurial/dispatch.py
@@ -37,6 +37,7 @@
hook,
profiling,
pycompat,
+ rcutil,
registrar,
scmutil,
ui as uimod,
@@ -902,17 +903,20 @@
_(b"error getting current working directory: %s")
% encoding.strtolocal(e.strerror)
)
+
path = cmdutil.findrepo(wd) or b""
if not path:
lui = ui
else:
lui = ui.copy()
- lui.readconfig(os.path.join(path, b".hg", b"hgrc"), path)
+ if rcutil.use_repo_hgrc():
+ lui.readconfig(os.path.join(path, b".hg", b"hgrc"), path)
if rpath:
path = lui.expandpath(rpath)
lui = ui.copy()
- lui.readconfig(os.path.join(path, b".hg", b"hgrc"), path)
+ if rcutil.use_repo_hgrc():
+ lui.readconfig(os.path.join(path, b".hg", b"hgrc"), path)
return path, lui
To: marmoute, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list