configitems: register the 'convert.ignoreancestorcheck' config
authorBoris Feld <boris.feld@octobus.net>
Fri, 30 Jun 2017 03:35:55 +0200
changeset 34173 7d83591831f0
parent 34172 c72af5a4f997
child 34174 2b7f5d38e59e
configitems: register the 'convert.ignoreancestorcheck' config
hgext/convert/__init__.py
--- a/hgext/convert/__init__.py	Fri Jun 30 03:35:48 2017 +0200
+++ b/hgext/convert/__init__.py	Fri Jun 30 03:35:55 2017 +0200
@@ -91,6 +91,9 @@
 configitem('convert', 'hg.usebranchnames',
     default=True,
 )
+configitem('convert', 'ignoreancestorcheck',
+    default=False,
+)
 
 # Commands definition was moved elsewhere to ease demandload job.