Mercurial > hgsubversion
comparison __init__.py @ 234:33e885f5f86a
Add --username and --password options to all commands
author | Daniel Tang <dytang@cs.purdue.edu> |
---|---|
date | Mon, 06 Apr 2009 02:52:14 -0400 |
parents | 2165461d2dd8 |
children | 4950b18cf949 |
comparison
equal
deleted
inserted
replaced
233:80a700398995 | 234:33e885f5f86a |
---|---|
77 ('', 'stupid', False, 'be stupid and use diffy replay.'), | 77 ('', 'stupid', False, 'be stupid and use diffy replay.'), |
78 ('A', 'authors', '', 'username mapping filename'), | 78 ('A', 'authors', '', 'username mapping filename'), |
79 ('', 'filemap', '', | 79 ('', 'filemap', '', |
80 'remap file to exclude paths or include only certain paths'), | 80 'remap file to exclude paths or include only certain paths'), |
81 ('', 'force', False, 'force an operation to happen'), | 81 ('', 'force', False, 'force an operation to happen'), |
82 ('', 'username', '', 'username for authentication'), | |
83 ('', 'password', '', 'password for authentication'), | |
82 ], | 84 ], |
83 svncommand.generate_help(), | 85 svncommand.generate_help(), |
84 ), | 86 ), |
85 "svnclone": | 87 "svnclone": |
86 (svn_fetch, | 88 (svn_fetch, |
88 ('', 'stupid', False, 'be stupid and use diffy replay.'), | 90 ('', 'stupid', False, 'be stupid and use diffy replay.'), |
89 ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.'), | 91 ('T', 'tag-locations', 'tags', 'Relative path to Subversion tags.'), |
90 ('A', 'authors', '', 'username mapping filename'), | 92 ('A', 'authors', '', 'username mapping filename'), |
91 ('', 'filemap', '', | 93 ('', 'filemap', '', |
92 'remap file to exclude paths or include only certain paths'), | 94 'remap file to exclude paths or include only certain paths'), |
95 ('', 'username', '', 'username for authentication'), | |
96 ('', 'password', '', 'password for authentication'), | |
93 ], | 97 ], |
94 'hg svnclone source [dest]'), | 98 'hg svnclone source [dest]'), |
95 } | 99 } |