Mercurial > public > mercurial-scm > hg
diff mercurial/configitems.py @ 34989:1a314176da9c stable
subrepo: use per-type config options to enable subrepos
We change subrepos.allowed from a list of allowed subrepo types to
a combination of a master switch and per-type boolean flag.
If the master switch is set, subrepos can be disabled wholesale.
If subrepos are globally enabled, then per-type options are
consulted. Mercurial repos are enabled by default. Everything else
is disabled by default.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 06 Nov 2017 22:32:41 -0800 |
parents | 5e27afeddaee |
children | cabc840ffdee |
line wrap: on
line diff
--- a/mercurial/configitems.py Mon Nov 06 14:56:17 2017 -0500 +++ b/mercurial/configitems.py Mon Nov 06 22:32:41 2017 -0800 @@ -814,6 +814,15 @@ coreconfigitem('subrepos', 'allowed', default=dynamicdefault, # to make backporting simpler ) +coreconfigitem('subrepos', 'hg:allowed', + default=dynamicdefault, +) +coreconfigitem('subrepos', 'git:allowed', + default=dynamicdefault, +) +coreconfigitem('subrepos', 'svn:allowed', + default=dynamicdefault, +) coreconfigitem('templates', '.*', default=None, generic=True,