comparison hgext/convert/__init__.py @ 12202:d346089095ac

convert: move -A option to --authormap
author Martin Geisler <mg@lazybytes.net>
date Fri, 10 Sep 2010 20:11:42 +0200
parents 0c67a58f0580
children dce09f82f619
comparison
equal deleted inserted replaced
12201:5bfa45651cf6 12202:d346089095ac
272 commands.norepo += " convert debugsvnlog debugcvsps" 272 commands.norepo += " convert debugsvnlog debugcvsps"
273 273
274 cmdtable = { 274 cmdtable = {
275 "convert": 275 "convert":
276 (convert, 276 (convert,
277 [('A', 'authors', '', 277 [('', 'authors', '',
278 _('username mapping filename (DEPRECATED, use --authormap instead)'), 278 _('username mapping filename (DEPRECATED, use --authormap instead)'),
279 _('FILE')), 279 _('FILE')),
280 ('s', 'source-type', '', 280 ('s', 'source-type', '',
281 _('source repository type'), _('TYPE')), 281 _('source repository type'), _('TYPE')),
282 ('d', 'dest-type', '', 282 ('d', 'dest-type', '',
283 _('destination repository type'), _('TYPE')), 283 _('destination repository type'), _('TYPE')),
284 ('r', 'rev', '', 284 ('r', 'rev', '',
285 _('import up to target revision REV'), _('REV')), 285 _('import up to target revision REV'), _('REV')),
286 ('', 'authormap', '', 286 ('A', 'authormap', '',
287 _('remap usernames using this file'), _('FILE')), 287 _('remap usernames using this file'), _('FILE')),
288 ('', 'filemap', '', 288 ('', 'filemap', '',
289 _('remap file names using contents of file'), _('FILE')), 289 _('remap file names using contents of file'), _('FILE')),
290 ('', 'splicemap', '', 290 ('', 'splicemap', '',
291 _('splice synthesized history into place'), _('FILE')), 291 _('splice synthesized history into place'), _('FILE')),