comparison hgext/convert/__init__.py @ 12187:4a854122a1c7

convert: better grouping of command line flags in help We normally put related command line flags after one another.
author Martin Geisler <mg@lazybytes.net>
date Fri, 10 Sep 2010 00:07:38 +0200
parents aade8f133d11
children 6045d467abd7
comparison
equal deleted inserted replaced
12183:f64b416b0ac8 12187:4a854122a1c7
263 cmdtable = { 263 cmdtable = {
264 "convert": 264 "convert":
265 (convert, 265 (convert,
266 [('A', 'authors', '', 266 [('A', 'authors', '',
267 _('username mapping filename'), _('FILE')), 267 _('username mapping filename'), _('FILE')),
268 ('s', 'source-type', '',
269 _('source repository type'), _('TYPE')),
268 ('d', 'dest-type', '', 270 ('d', 'dest-type', '',
269 _('destination repository type'), _('TYPE')), 271 _('destination repository type'), _('TYPE')),
272 ('r', 'rev', '',
273 _('import up to target revision REV'), _('REV')),
270 ('', 'filemap', '', 274 ('', 'filemap', '',
271 _('remap file names using contents of file'), _('FILE')), 275 _('remap file names using contents of file'), _('FILE')),
272 ('r', 'rev', '',
273 _('import up to target revision REV'), _('REV')),
274 ('s', 'source-type', '',
275 _('source repository type'), _('TYPE')),
276 ('', 'splicemap', '', 276 ('', 'splicemap', '',
277 _('splice synthesized history into place'), _('FILE')), 277 _('splice synthesized history into place'), _('FILE')),
278 ('', 'branchmap', '', 278 ('', 'branchmap', '',
279 _('change branch names while converting'), _('FILE')), 279 _('change branch names while converting'), _('FILE')),
280 ('', 'branchsort', None, _('try to sort changesets by branches')), 280 ('', 'branchsort', None, _('try to sort changesets by branches')),