comparison hgsubversion/__init__.py @ 1581:363d4c2cb880

hgsubversion: make the 'rev' argument a list type This will help us pass multiple rev arguments to the subcommands.
author Ivan Lezhankin <ilezhankin@yandex-team.ru>
date Mon, 06 Aug 2018 14:46:36 +0300
parents 4830089aee58
children 40d8557d6aee
comparison
equal deleted inserted replaced
1580:0d18108ec153 1581:363d4c2cb880
212 ('', 'filemap', '', 212 ('', 'filemap', '',
213 'remap file to exclude paths or include only certain paths'), 213 'remap file to exclude paths or include only certain paths'),
214 ('', 'force', False, 'force an operation to happen'), 214 ('', 'force', False, 'force an operation to happen'),
215 ('', 'username', '', 'username for authentication'), 215 ('', 'username', '', 'username for authentication'),
216 ('', 'password', '', 'password for authentication'), 216 ('', 'password', '', 'password for authentication'),
217 ('r', 'rev', '', 'Mercurial revision'), 217 ('r', 'rev', [], 'Mercurial revision'),
218 ('', 'unsafe-skip-uuid-check', False, 218 ('', 'unsafe-skip-uuid-check', False,
219 'skip repository uuid check in rebuildmeta'), 219 'skip repository uuid check in rebuildmeta'),
220 ] 220 ]
221 svnusage = 'hg svn <subcommand> ...' 221 svnusage = 'hg svn <subcommand> ...'
222 222