comparison tests/test-convert.t @ 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
comparison
equal deleted inserted replaced
25740:47469fa8fb01 25741:86fe3c404c1e
293 convert.hg.tagsbranch 293 convert.hg.tagsbranch
294 branch name for tag revisions, defaults to "default". 294 branch name for tag revisions, defaults to "default".
295 convert.hg.usebranchnames 295 convert.hg.usebranchnames
296 preserve branch names. The default is True. 296 preserve branch names. The default is True.
297 297
298 All Destinations
299 ################
300
301 All destination types accept the following options:
302
303 convert.skiptags
304 does not convert tags from the source repo to the target
305 repo. The default is False.
306
298 options: 307 options:
299 308
300 -s --source-type TYPE source repository type 309 -s --source-type TYPE source repository type
301 -d --dest-type TYPE destination repository type 310 -d --dest-type TYPE destination repository type
302 -r --rev REV import up to source revision REV 311 -r --rev REV import up to source revision REV