changeset 34173:7d83591831f0

configitems: register the 'convert.ignoreancestorcheck' config
author Boris Feld <boris.feld@octobus.net>
date Fri, 30 Jun 2017 03:35:55 +0200
parents c72af5a4f997
children 2b7f5d38e59e
files hgext/convert/__init__.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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.