hgext/convert/__init__.py
changeset 46400 7525e77b5eac
parent 45942 89a2afe31e82
child 46819 d4ba4d51f85f
equal deleted inserted replaced
46399:1d6d1a15a963 46400:7525e77b5eac
   489 
   489 
   490     All destination types accept the following options:
   490     All destination types accept the following options:
   491 
   491 
   492     :convert.skiptags: does not convert tags from the source repo to the target
   492     :convert.skiptags: does not convert tags from the source repo to the target
   493         repo. The default is False.
   493         repo. The default is False.
       
   494 
       
   495     Subversion Destination
       
   496     ######################
       
   497 
       
   498     Original commit dates are not preserved by default.
       
   499 
       
   500     :convert.svn.dangerous-set-commit-dates: preserve original commit dates,
       
   501         forcefully setting ``svn:date`` revision properties. This option is
       
   502         DANGEROUS and may break some subversion functionality for the resulting
       
   503         repository (e.g. filtering revisions with date ranges in ``svn log``),
       
   504         as original commit dates are not guaranteed to be monotonically
       
   505         increasing.
       
   506 
       
   507     For commit dates setting to work destination repository must have
       
   508     ``pre-revprop-change`` hook configured to allow setting of ``svn:date``
       
   509     revision properties. See Subversion documentation for more details.
   494     """
   510     """
   495     return convcmd.convert(ui, src, dest, revmapfile, **opts)
   511     return convcmd.convert(ui, src, dest, revmapfile, **opts)
   496 
   512 
   497 
   513 
   498 @command(b'debugsvnlog', [], b'hg debugsvnlog', norepo=True)
   514 @command(b'debugsvnlog', [], b'hg debugsvnlog', norepo=True)