Mercurial > public > mercurial-scm > hg-stable
diff mercurial/configitems.py @ 35037:602c168c0207
merge with stable
author | Augie Fackler <augie@google.com> |
---|---|
date | Tue, 07 Nov 2017 13:18:49 -0500 |
parents | 3649c3f2cd90 cabc840ffdee |
children | da5d5ea7d696 |
line wrap: on
line diff
--- a/mercurial/configitems.py Sat Oct 21 17:46:41 2017 +0900 +++ b/mercurial/configitems.py Tue Nov 07 13:18:49 2017 -0500 @@ -787,6 +787,12 @@ coreconfigitem('server', 'zliblevel', default=-1, ) +coreconfigitem('share', 'pool', + default=None, +) +coreconfigitem('share', 'poolnaming', + default='identity', +) coreconfigitem('smtp', 'host', default=None, ) @@ -808,6 +814,18 @@ coreconfigitem('sparse', 'missingwarning', default=True, ) +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,