comparison __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
comparison
equal deleted inserted replaced
166:db88e528e8e6 167:3cd6a7354207
42 cmdtable = { 42 cmdtable = {
43 "svn": 43 "svn":
44 (svn, 44 (svn,
45 [('u', 'svn-url', '', 'Path to the Subversion server.'), 45 [('u', 'svn-url', '', 'Path to the Subversion server.'),
46 ('', 'stupid', False, 'Be stupid and use diffy replay.'), 46 ('', 'stupid', False, 'Be stupid and use diffy replay.'),
47 ('A', 'authors', '', 'username mapping filename'),
47 ], 48 ],
48 svncommand.generate_help(), 49 svncommand.generate_help(),
49 ), 50 ),
50 "svnclone": 51 "svnclone":
51 (svn_fetch, 52 (svn_fetch,
52 [('S', 'skipto-rev', '0', 'Skip commits before this revision.'), 53 [('S', 'skipto-rev', '0', 'Skip commits before this revision.'),
53 ('', 'stupid', False, 'Be stupid and use diffy replay.'), 54 ('', 'stupid', False, 'Be stupid and use diffy replay.'),
54 ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.') 55 ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.'),
56 ('A', 'authors', '', 'username mapping filename'),
55 ], 57 ],
56 'hg svnclone source [dest]'), 58 'hg svnclone source [dest]'),
57 } 59 }