Show More
@@ -8,6 +8,7 b'' | |||
|
8 | 8 | |
|
9 | 9 | import convcmd |
|
10 | 10 | from mercurial import commands |
|
11 | from mercurial.i18n import _ | |
|
11 | 12 | |
|
12 | 13 | # Commands definition was moved elsewhere to ease demandload job. |
|
13 | 14 | |
@@ -181,14 +182,14 b' commands.norepo += " convert debugsvnlog' | |||
|
181 | 182 | cmdtable = { |
|
182 | 183 | "convert": |
|
183 | 184 | (convert, |
|
184 | [('A', 'authors', '', 'username mapping filename'), | |
|
185 | ('d', 'dest-type', '', 'destination repository type'), | |
|
186 | ('', 'filemap', '', 'remap file names using contents of file'), | |
|
187 | ('r', 'rev', '', 'import up to target revision REV'), | |
|
188 | ('s', 'source-type', '', 'source repository type'), | |
|
189 | ('', 'splicemap', '', 'splice synthesized history into place'), | |
|
190 | ('', 'datesort', None, 'try to sort changesets by date')], | |
|
191 | 'hg convert [OPTION]... SOURCE [DEST [REVMAP]]'), | |
|
185 | [('A', 'authors', '', _('username mapping filename')), | |
|
186 | ('d', 'dest-type', '', _('destination repository type')), | |
|
187 | ('', 'filemap', '', _('remap file names using contents of file')), | |
|
188 | ('r', 'rev', '', _('import up to target revision REV')), | |
|
189 | ('s', 'source-type', '', _('source repository type')), | |
|
190 | ('', 'splicemap', '', _('splice synthesized history into place')), | |
|
191 | ('', 'datesort', None, _('try to sort changesets by date'))], | |
|
192 | _('hg convert [OPTION]... SOURCE [DEST [REVMAP]]')), | |
|
192 | 193 | "debugsvnlog": |
|
193 | 194 | (debugsvnlog, |
|
194 | 195 | [], |
General Comments 0
You need to be logged in to leave comments.
Login now