--- 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,