diff __init__.py @ 167:3cd6a7354207

fetch: Add support for an authormap which can rename authors, intended for repository conversion.
author Graham Booker <gbooker@cod3r.com>
date Tue, 30 Dec 2008 20:13:32 -0600
parents edd9f4e5154a
children a336e3e82648
line wrap: on
line diff
--- a/__init__.py
+++ b/__init__.py
@@ -44,6 +44,7 @@ cmdtable = {
         (svn,
          [('u', 'svn-url', '', 'Path to the Subversion server.'),
           ('', 'stupid', False, 'Be stupid and use diffy replay.'),
+          ('A', 'authors', '', 'username mapping filename'),
           ],
          svncommand.generate_help(),
          ),
@@ -51,7 +52,8 @@ cmdtable = {
         (svn_fetch,
          [('S', 'skipto-rev', '0', 'Skip commits before this revision.'),
           ('', 'stupid', False, 'Be stupid and use diffy replay.'),
-          ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.')
+          ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.'),
+          ('A', 'authors', '', 'username mapping filename'),
          ],
          'hg svnclone source [dest]'),
 }