diff hgext/convert/__init__.py @ 25741:86fe3c404c1e

convert: add config to not convert tags In some cases we do not want to convert tags from the source repo to be tags in the target repo (for instance, in a large repository, hgtags cause scaling issues so we want to avoid them). This adds a config option to disable converting tags.
author Durham Goode <durham@fb.com>
date Mon, 29 Jun 2015 13:40:20 -0700
parents daf9f7ee2a5c
children baea47cafe75
line wrap: on
line diff
--- a/hgext/convert/__init__.py	Thu Jul 02 22:18:21 2015 +0900
+++ b/hgext/convert/__init__.py	Mon Jun 29 13:40:20 2015 -0700
@@ -355,6 +355,14 @@
 
     :convert.hg.usebranchnames: preserve branch names. The default is
         True.
+
+    All Destinations
+    ################
+
+    All destination types accept the following options:
+
+    :convert.skiptags: does not convert tags from the source repo to the target
+        repo. The default is False.
     """
     return convcmd.convert(ui, src, dest, revmapfile, **opts)