comparison __init__.py @ 179:a336e3e82648

Fetch: add a filemap argument for use in converting old repositories to Mercurial.
author Graham Booker <gbooker@cod3r.com>
date Sat, 03 Jan 2009 20:15:03 -0600
parents 3cd6a7354207
children 57355b0e7bd1
comparison
equal deleted inserted replaced
178:33ebdcb75bcd 179:a336e3e82648
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 ('A', 'authors', '', 'username mapping filename'),
48 ('', 'filemap', '', 'remap file to exclude paths or include only certain paths'),
48 ], 49 ],
49 svncommand.generate_help(), 50 svncommand.generate_help(),
50 ), 51 ),
51 "svnclone": 52 "svnclone":
52 (svn_fetch, 53 (svn_fetch,
53 [('S', 'skipto-rev', '0', 'Skip commits before this revision.'), 54 [('S', 'skipto-rev', '0', 'Skip commits before this revision.'),
54 ('', 'stupid', False, 'Be stupid and use diffy replay.'), 55 ('', 'stupid', False, 'Be stupid and use diffy replay.'),
55 ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.'), 56 ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.'),
56 ('A', 'authors', '', 'username mapping filename'), 57 ('A', 'authors', '', 'username mapping filename'),
58 ('', 'filemap', '', 'remap file to exclude paths or include only certain paths'),
57 ], 59 ],
58 'hg svnclone source [dest]'), 60 'hg svnclone source [dest]'),
59 } 61 }