comparison __init__.py @ 301:79440ed81011

Allow specifying a revision to stop at using the -H flag. This is useful for converting repositories which have been deleted or renamed, such as llvm-gcc-4-2 in the LLVM repositories which was renamed to llvm-gcc-4.2 shortly after its creation. Also, consolidate the two places in svn_swig_wrapper.py where a default chunk size is specified to one, single variable declaration.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Fri, 27 Mar 2009 03:21:45 +0100
parents fa26c7ef0180
children ce676eff002b
comparison
equal deleted inserted replaced
300:4aba7542f6a9 301:79440ed81011
82 ], 82 ],
83 svncommand.generate_help(), 83 svncommand.generate_help(),
84 ), 84 ),
85 "svnclone": 85 "svnclone":
86 (svn_fetch, 86 (svn_fetch,
87 [('S', 'skipto-rev', '0', 'skip commits before this revision.'), 87 [('S', 'skipto-rev', 0, 'skip commits before this revision.'),
88 ('H', 'head', 0, 'skip revisions after this one.'),
88 ('', 'stupid', False, 'be stupid and use diffy replay.'), 89 ('', 'stupid', False, 'be stupid and use diffy replay.'),
89 ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.'), 90 ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.'),
90 ('A', 'authors', '', 'username mapping filename'), 91 ('A', 'authors', '', 'username mapping filename'),
91 ('', 'filemap', '', 92 ('', 'filemap', '',
92 'remap file to exclude paths or include only certain paths'), 93 'remap file to exclude paths or include only certain paths'),