Show More
@@ -1,302 +1,307 | |||||
1 | # convert.py Foreign SCM converter |
|
1 | # convert.py Foreign SCM converter | |
2 | # |
|
2 | # | |
3 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> |
|
3 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | |
4 | # |
|
4 | # | |
5 | # This software may be used and distributed according to the terms of the |
|
5 | # This software may be used and distributed according to the terms of the | |
6 | # GNU General Public License version 2 or any later version. |
|
6 | # GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | '''import revisions from foreign VCS repositories into Mercurial''' |
|
8 | '''import revisions from foreign VCS repositories into Mercurial''' | |
9 |
|
9 | |||
10 | import convcmd |
|
10 | import convcmd | |
11 | import cvsps |
|
11 | import cvsps | |
12 | import subversion |
|
12 | import subversion | |
13 | from mercurial import commands |
|
13 | from mercurial import commands | |
14 | from mercurial.i18n import _ |
|
14 | from mercurial.i18n import _ | |
15 |
|
15 | |||
16 | # Commands definition was moved elsewhere to ease demandload job. |
|
16 | # Commands definition was moved elsewhere to ease demandload job. | |
17 |
|
17 | |||
18 | def convert(ui, src, dest=None, revmapfile=None, **opts): |
|
18 | def convert(ui, src, dest=None, revmapfile=None, **opts): | |
19 | """convert a foreign SCM repository to a Mercurial one. |
|
19 | """convert a foreign SCM repository to a Mercurial one. | |
20 |
|
20 | |||
21 | Accepted source formats [identifiers]: |
|
21 | Accepted source formats [identifiers]: | |
22 |
|
22 | |||
23 | - Mercurial [hg] |
|
23 | - Mercurial [hg] | |
24 | - CVS [cvs] |
|
24 | - CVS [cvs] | |
25 | - Darcs [darcs] |
|
25 | - Darcs [darcs] | |
26 | - git [git] |
|
26 | - git [git] | |
27 | - Subversion [svn] |
|
27 | - Subversion [svn] | |
28 | - Monotone [mtn] |
|
28 | - Monotone [mtn] | |
29 | - GNU Arch [gnuarch] |
|
29 | - GNU Arch [gnuarch] | |
30 | - Bazaar [bzr] |
|
30 | - Bazaar [bzr] | |
31 | - Perforce [p4] |
|
31 | - Perforce [p4] | |
32 |
|
32 | |||
33 | Accepted destination formats [identifiers]: |
|
33 | Accepted destination formats [identifiers]: | |
34 |
|
34 | |||
35 | - Mercurial [hg] |
|
35 | - Mercurial [hg] | |
36 | - Subversion [svn] (history on branches is not preserved) |
|
36 | - Subversion [svn] (history on branches is not preserved) | |
37 |
|
37 | |||
38 | If no revision is given, all revisions will be converted. |
|
38 | If no revision is given, all revisions will be converted. | |
39 | Otherwise, convert will only import up to the named revision |
|
39 | Otherwise, convert will only import up to the named revision | |
40 | (given in a format understood by the source). |
|
40 | (given in a format understood by the source). | |
41 |
|
41 | |||
42 | If no destination directory name is specified, it defaults to the |
|
42 | If no destination directory name is specified, it defaults to the | |
43 | basename of the source with '-hg' appended. If the destination |
|
43 | basename of the source with '-hg' appended. If the destination | |
44 | repository doesn't exist, it will be created. |
|
44 | repository doesn't exist, it will be created. | |
45 |
|
45 | |||
46 | By default, all sources except Mercurial will use --branchsort. |
|
46 | By default, all sources except Mercurial will use --branchsort. | |
47 | Mercurial uses --sourcesort to preserve original revision numbers |
|
47 | Mercurial uses --sourcesort to preserve original revision numbers | |
48 | order. Sort modes have the following effects: |
|
48 | order. Sort modes have the following effects: | |
49 |
|
49 | |||
50 | --branchsort convert from parent to child revision when possible, |
|
50 | --branchsort convert from parent to child revision when possible, | |
51 | which means branches are usually converted one after |
|
51 | which means branches are usually converted one after | |
52 | the other. It generates more compact repositories. |
|
52 | the other. It generates more compact repositories. | |
53 |
|
53 | |||
54 | --datesort sort revisions by date. Converted repositories have |
|
54 | --datesort sort revisions by date. Converted repositories have | |
55 | good-looking changelogs but are often an order of |
|
55 | good-looking changelogs but are often an order of | |
56 | magnitude larger than the same ones generated by |
|
56 | magnitude larger than the same ones generated by | |
57 | --branchsort. |
|
57 | --branchsort. | |
58 |
|
58 | |||
59 | --sourcesort try to preserve source revisions order, only |
|
59 | --sourcesort try to preserve source revisions order, only | |
60 | supported by Mercurial sources. |
|
60 | supported by Mercurial sources. | |
61 |
|
61 | |||
62 | If <REVMAP> isn't given, it will be put in a default location |
|
62 | If <REVMAP> isn't given, it will be put in a default location | |
63 | (<dest>/.hg/shamap by default). The <REVMAP> is a simple text file |
|
63 | (<dest>/.hg/shamap by default). The <REVMAP> is a simple text file | |
64 | that maps each source commit ID to the destination ID for that |
|
64 | that maps each source commit ID to the destination ID for that | |
65 | revision, like so:: |
|
65 | revision, like so:: | |
66 |
|
66 | |||
67 | <source ID> <destination ID> |
|
67 | <source ID> <destination ID> | |
68 |
|
68 | |||
69 | If the file doesn't exist, it's automatically created. It's |
|
69 | If the file doesn't exist, it's automatically created. It's | |
70 | updated on each commit copied, so convert-repo can be interrupted |
|
70 | updated on each commit copied, so convert-repo can be interrupted | |
71 | and can be run repeatedly to copy new commits. |
|
71 | and can be run repeatedly to copy new commits. | |
72 |
|
72 | |||
73 | The [username mapping] file is a simple text file that maps each |
|
73 | The [username mapping] file is a simple text file that maps each | |
74 | source commit author to a destination commit author. It is handy |
|
74 | source commit author to a destination commit author. It is handy | |
75 | for source SCMs that use unix logins to identify authors (eg: |
|
75 | for source SCMs that use unix logins to identify authors (eg: | |
76 | CVS). One line per author mapping and the line format is: |
|
76 | CVS). One line per author mapping and the line format is: | |
77 | srcauthor=whatever string you want |
|
77 | srcauthor=whatever string you want | |
78 |
|
78 | |||
79 | The filemap is a file that allows filtering and remapping of files |
|
79 | The filemap is a file that allows filtering and remapping of files | |
80 | and directories. Comment lines start with '#'. Each line can |
|
80 | and directories. Each line can contain one of the following | |
81 | contain one of the following directives:: |
|
81 | directives:: | |
|
82 | ||||
|
83 | include path/to/file-or-dir | |||
|
84 | ||||
|
85 | exclude path/to/file-or-dir | |||
82 |
|
86 | |||
83 | include path/to/file |
|
87 | rename path/to/source path/to/destination | |
84 |
|
88 | |||
85 | exclude path/to/file |
|
89 | Comment lines start with '#'. A specificed path matches if it | |
86 |
|
90 | equals the full relative name of a file or one of its parent | ||
87 | rename from/file to/file |
|
91 | directories. The 'include' or 'exclude' directive with the longest | |
|
92 | matching path applies, so line order does not matter. | |||
88 |
|
93 | |||
89 | The 'include' directive causes a file, or all files under a |
|
94 | The 'include' directive causes a file, or all files under a | |
90 | directory, to be included in the destination repository, and the |
|
95 | directory, to be included in the destination repository, and the | |
91 | exclusion of all other files and directories not explicitly |
|
96 | exclusion of all other files and directories not explicitly | |
92 | included. The 'exclude' directive causes files or directories to |
|
97 | included. The 'exclude' directive causes files or directories to | |
93 |
be omitted. The 'rename' directive renames a file or directory |
|
98 | be omitted. The 'rename' directive renames a file or directory if | |
94 |
rename from a subdirectory into the root of the |
|
99 | is converted. To rename from a subdirectory into the root of the | |
95 | '.' as the path to rename to. |
|
100 | repository, use '.' as the path to rename to. | |
96 |
|
101 | |||
97 | The splicemap is a file that allows insertion of synthetic |
|
102 | The splicemap is a file that allows insertion of synthetic | |
98 | history, letting you specify the parents of a revision. This is |
|
103 | history, letting you specify the parents of a revision. This is | |
99 | useful if you want to e.g. give a Subversion merge two parents, or |
|
104 | useful if you want to e.g. give a Subversion merge two parents, or | |
100 | graft two disconnected series of history together. Each entry |
|
105 | graft two disconnected series of history together. Each entry | |
101 | contains a key, followed by a space, followed by one or two |
|
106 | contains a key, followed by a space, followed by one or two | |
102 | comma-separated values. The key is the revision ID in the source |
|
107 | comma-separated values. The key is the revision ID in the source | |
103 | revision control system whose parents should be modified (same |
|
108 | revision control system whose parents should be modified (same | |
104 | format as a key in .hg/shamap). The values are the revision IDs |
|
109 | format as a key in .hg/shamap). The values are the revision IDs | |
105 | (in either the source or destination revision control system) that |
|
110 | (in either the source or destination revision control system) that | |
106 | should be used as the new parents for that node. For example, if |
|
111 | should be used as the new parents for that node. For example, if | |
107 | you have merged "release-1.0" into "trunk", then you should |
|
112 | you have merged "release-1.0" into "trunk", then you should | |
108 | specify the revision on "trunk" as the first parent and the one on |
|
113 | specify the revision on "trunk" as the first parent and the one on | |
109 | the "release-1.0" branch as the second. |
|
114 | the "release-1.0" branch as the second. | |
110 |
|
115 | |||
111 | The branchmap is a file that allows you to rename a branch when it is |
|
116 | The branchmap is a file that allows you to rename a branch when it is | |
112 | being brought in from whatever external repository. When used in |
|
117 | being brought in from whatever external repository. When used in | |
113 | conjunction with a splicemap, it allows for a powerful combination |
|
118 | conjunction with a splicemap, it allows for a powerful combination | |
114 | to help fix even the most badly mismanaged repositories and turn them |
|
119 | to help fix even the most badly mismanaged repositories and turn them | |
115 | into nicely structured Mercurial repositories. The branchmap contains |
|
120 | into nicely structured Mercurial repositories. The branchmap contains | |
116 | lines of the form "original_branch_name new_branch_name". |
|
121 | lines of the form "original_branch_name new_branch_name". | |
117 | "original_branch_name" is the name of the branch in the source |
|
122 | "original_branch_name" is the name of the branch in the source | |
118 | repository, and "new_branch_name" is the name of the branch is the |
|
123 | repository, and "new_branch_name" is the name of the branch is the | |
119 | destination repository. This can be used to (for instance) move code |
|
124 | destination repository. This can be used to (for instance) move code | |
120 | in one repository from "default" to a named branch. |
|
125 | in one repository from "default" to a named branch. | |
121 |
|
126 | |||
122 | Mercurial Source |
|
127 | Mercurial Source | |
123 | ---------------- |
|
128 | ---------------- | |
124 |
|
129 | |||
125 | --config convert.hg.ignoreerrors=False (boolean) |
|
130 | --config convert.hg.ignoreerrors=False (boolean) | |
126 | ignore integrity errors when reading. Use it to fix Mercurial |
|
131 | ignore integrity errors when reading. Use it to fix Mercurial | |
127 | repositories with missing revlogs, by converting from and to |
|
132 | repositories with missing revlogs, by converting from and to | |
128 | Mercurial. |
|
133 | Mercurial. | |
129 | --config convert.hg.saverev=False (boolean) |
|
134 | --config convert.hg.saverev=False (boolean) | |
130 | store original revision ID in changeset (forces target IDs to |
|
135 | store original revision ID in changeset (forces target IDs to | |
131 | change) |
|
136 | change) | |
132 | --config convert.hg.startrev=0 (hg revision identifier) |
|
137 | --config convert.hg.startrev=0 (hg revision identifier) | |
133 | convert start revision and its descendants |
|
138 | convert start revision and its descendants | |
134 |
|
139 | |||
135 | CVS Source |
|
140 | CVS Source | |
136 | ---------- |
|
141 | ---------- | |
137 |
|
142 | |||
138 | CVS source will use a sandbox (i.e. a checked-out copy) from CVS |
|
143 | CVS source will use a sandbox (i.e. a checked-out copy) from CVS | |
139 | to indicate the starting point of what will be converted. Direct |
|
144 | to indicate the starting point of what will be converted. Direct | |
140 | access to the repository files is not needed, unless of course the |
|
145 | access to the repository files is not needed, unless of course the | |
141 | repository is :local:. The conversion uses the top level directory |
|
146 | repository is :local:. The conversion uses the top level directory | |
142 | in the sandbox to find the CVS repository, and then uses CVS rlog |
|
147 | in the sandbox to find the CVS repository, and then uses CVS rlog | |
143 | commands to find files to convert. This means that unless a |
|
148 | commands to find files to convert. This means that unless a | |
144 | filemap is given, all files under the starting directory will be |
|
149 | filemap is given, all files under the starting directory will be | |
145 | converted, and that any directory reorganization in the CVS |
|
150 | converted, and that any directory reorganization in the CVS | |
146 | sandbox is ignored. |
|
151 | sandbox is ignored. | |
147 |
|
152 | |||
148 | The options shown are the defaults. |
|
153 | The options shown are the defaults. | |
149 |
|
154 | |||
150 | --config convert.cvsps.cache=True (boolean) |
|
155 | --config convert.cvsps.cache=True (boolean) | |
151 | Set to False to disable remote log caching, for testing and |
|
156 | Set to False to disable remote log caching, for testing and | |
152 | debugging purposes. |
|
157 | debugging purposes. | |
153 | --config convert.cvsps.fuzz=60 (integer) |
|
158 | --config convert.cvsps.fuzz=60 (integer) | |
154 | Specify the maximum time (in seconds) that is allowed between |
|
159 | Specify the maximum time (in seconds) that is allowed between | |
155 | commits with identical user and log message in a single |
|
160 | commits with identical user and log message in a single | |
156 | changeset. When very large files were checked in as part of a |
|
161 | changeset. When very large files were checked in as part of a | |
157 | changeset then the default may not be long enough. |
|
162 | changeset then the default may not be long enough. | |
158 | --config convert.cvsps.mergeto='{{mergetobranch ([-\\w]+)}}' |
|
163 | --config convert.cvsps.mergeto='{{mergetobranch ([-\\w]+)}}' | |
159 | Specify a regular expression to which commit log messages are |
|
164 | Specify a regular expression to which commit log messages are | |
160 | matched. If a match occurs, then the conversion process will |
|
165 | matched. If a match occurs, then the conversion process will | |
161 | insert a dummy revision merging the branch on which this log |
|
166 | insert a dummy revision merging the branch on which this log | |
162 | message occurs to the branch indicated in the regex. |
|
167 | message occurs to the branch indicated in the regex. | |
163 | --config convert.cvsps.mergefrom='{{mergefrombranch ([-\\w]+)}}' |
|
168 | --config convert.cvsps.mergefrom='{{mergefrombranch ([-\\w]+)}}' | |
164 | Specify a regular expression to which commit log messages are |
|
169 | Specify a regular expression to which commit log messages are | |
165 | matched. If a match occurs, then the conversion process will |
|
170 | matched. If a match occurs, then the conversion process will | |
166 | add the most recent revision on the branch indicated in the |
|
171 | add the most recent revision on the branch indicated in the | |
167 | regex as the second parent of the changeset. |
|
172 | regex as the second parent of the changeset. | |
168 | --config hook.cvslog |
|
173 | --config hook.cvslog | |
169 | Specify a Python function to be called at the end of gathering |
|
174 | Specify a Python function to be called at the end of gathering | |
170 | the CVS log. The function is passed a list with the log entries, |
|
175 | the CVS log. The function is passed a list with the log entries, | |
171 | and can modify the entries in-place, or add or delete them. |
|
176 | and can modify the entries in-place, or add or delete them. | |
172 | --config hook.cvschangesets |
|
177 | --config hook.cvschangesets | |
173 | Specify a Python function to be called after the changesets |
|
178 | Specify a Python function to be called after the changesets | |
174 | are calculated from the the CVS log. The function is passed |
|
179 | are calculated from the the CVS log. The function is passed | |
175 | a list with the changeset entries, and can modify the changesets |
|
180 | a list with the changeset entries, and can modify the changesets | |
176 | in-place, or add or delete them. |
|
181 | in-place, or add or delete them. | |
177 |
|
182 | |||
178 | An additional "debugcvsps" Mercurial command allows the builtin |
|
183 | An additional "debugcvsps" Mercurial command allows the builtin | |
179 | changeset merging code to be run without doing a conversion. Its |
|
184 | changeset merging code to be run without doing a conversion. Its | |
180 | parameters and output are similar to that of cvsps 2.1. Please see |
|
185 | parameters and output are similar to that of cvsps 2.1. Please see | |
181 | the command help for more details. |
|
186 | the command help for more details. | |
182 |
|
187 | |||
183 | Subversion Source |
|
188 | Subversion Source | |
184 | ----------------- |
|
189 | ----------------- | |
185 |
|
190 | |||
186 | Subversion source detects classical trunk/branches/tags layouts. |
|
191 | Subversion source detects classical trunk/branches/tags layouts. | |
187 | By default, the supplied "svn://repo/path/" source URL is |
|
192 | By default, the supplied "svn://repo/path/" source URL is | |
188 | converted as a single branch. If "svn://repo/path/trunk" exists it |
|
193 | converted as a single branch. If "svn://repo/path/trunk" exists it | |
189 | replaces the default branch. If "svn://repo/path/branches" exists, |
|
194 | replaces the default branch. If "svn://repo/path/branches" exists, | |
190 | its subdirectories are listed as possible branches. If |
|
195 | its subdirectories are listed as possible branches. If | |
191 | "svn://repo/path/tags" exists, it is looked for tags referencing |
|
196 | "svn://repo/path/tags" exists, it is looked for tags referencing | |
192 | converted branches. Default "trunk", "branches" and "tags" values |
|
197 | converted branches. Default "trunk", "branches" and "tags" values | |
193 | can be overridden with following options. Set them to paths |
|
198 | can be overridden with following options. Set them to paths | |
194 | relative to the source URL, or leave them blank to disable auto |
|
199 | relative to the source URL, or leave them blank to disable auto | |
195 | detection. |
|
200 | detection. | |
196 |
|
201 | |||
197 | --config convert.svn.branches=branches (directory name) |
|
202 | --config convert.svn.branches=branches (directory name) | |
198 | specify the directory containing branches |
|
203 | specify the directory containing branches | |
199 | --config convert.svn.tags=tags (directory name) |
|
204 | --config convert.svn.tags=tags (directory name) | |
200 | specify the directory containing tags |
|
205 | specify the directory containing tags | |
201 | --config convert.svn.trunk=trunk (directory name) |
|
206 | --config convert.svn.trunk=trunk (directory name) | |
202 | specify the name of the trunk branch |
|
207 | specify the name of the trunk branch | |
203 |
|
208 | |||
204 | Source history can be retrieved starting at a specific revision, |
|
209 | Source history can be retrieved starting at a specific revision, | |
205 | instead of being integrally converted. Only single branch |
|
210 | instead of being integrally converted. Only single branch | |
206 | conversions are supported. |
|
211 | conversions are supported. | |
207 |
|
212 | |||
208 | --config convert.svn.startrev=0 (svn revision number) |
|
213 | --config convert.svn.startrev=0 (svn revision number) | |
209 | specify start Subversion revision. |
|
214 | specify start Subversion revision. | |
210 |
|
215 | |||
211 | Perforce Source |
|
216 | Perforce Source | |
212 | --------------- |
|
217 | --------------- | |
213 |
|
218 | |||
214 | The Perforce (P4) importer can be given a p4 depot path or a |
|
219 | The Perforce (P4) importer can be given a p4 depot path or a | |
215 | client specification as source. It will convert all files in the |
|
220 | client specification as source. It will convert all files in the | |
216 | source to a flat Mercurial repository, ignoring labels, branches |
|
221 | source to a flat Mercurial repository, ignoring labels, branches | |
217 | and integrations. Note that when a depot path is given you then |
|
222 | and integrations. Note that when a depot path is given you then | |
218 | usually should specify a target directory, because otherwise the |
|
223 | usually should specify a target directory, because otherwise the | |
219 | target may be named ...-hg. |
|
224 | target may be named ...-hg. | |
220 |
|
225 | |||
221 | It is possible to limit the amount of source history to be |
|
226 | It is possible to limit the amount of source history to be | |
222 | converted by specifying an initial Perforce revision. |
|
227 | converted by specifying an initial Perforce revision. | |
223 |
|
228 | |||
224 | --config convert.p4.startrev=0 (perforce changelist number) |
|
229 | --config convert.p4.startrev=0 (perforce changelist number) | |
225 | specify initial Perforce revision. |
|
230 | specify initial Perforce revision. | |
226 |
|
231 | |||
227 | Mercurial Destination |
|
232 | Mercurial Destination | |
228 | --------------------- |
|
233 | --------------------- | |
229 |
|
234 | |||
230 | --config convert.hg.clonebranches=False (boolean) |
|
235 | --config convert.hg.clonebranches=False (boolean) | |
231 | dispatch source branches in separate clones. |
|
236 | dispatch source branches in separate clones. | |
232 | --config convert.hg.tagsbranch=default (branch name) |
|
237 | --config convert.hg.tagsbranch=default (branch name) | |
233 | tag revisions branch name |
|
238 | tag revisions branch name | |
234 | --config convert.hg.usebranchnames=True (boolean) |
|
239 | --config convert.hg.usebranchnames=True (boolean) | |
235 | preserve branch names |
|
240 | preserve branch names | |
236 |
|
241 | |||
237 | """ |
|
242 | """ | |
238 | return convcmd.convert(ui, src, dest, revmapfile, **opts) |
|
243 | return convcmd.convert(ui, src, dest, revmapfile, **opts) | |
239 |
|
244 | |||
240 | def debugsvnlog(ui, **opts): |
|
245 | def debugsvnlog(ui, **opts): | |
241 | return subversion.debugsvnlog(ui, **opts) |
|
246 | return subversion.debugsvnlog(ui, **opts) | |
242 |
|
247 | |||
243 | def debugcvsps(ui, *args, **opts): |
|
248 | def debugcvsps(ui, *args, **opts): | |
244 | '''create changeset information from CVS |
|
249 | '''create changeset information from CVS | |
245 |
|
250 | |||
246 | This command is intended as a debugging tool for the CVS to |
|
251 | This command is intended as a debugging tool for the CVS to | |
247 | Mercurial converter, and can be used as a direct replacement for |
|
252 | Mercurial converter, and can be used as a direct replacement for | |
248 | cvsps. |
|
253 | cvsps. | |
249 |
|
254 | |||
250 | Hg debugcvsps reads the CVS rlog for current directory (or any |
|
255 | Hg debugcvsps reads the CVS rlog for current directory (or any | |
251 | named directory) in the CVS repository, and converts the log to a |
|
256 | named directory) in the CVS repository, and converts the log to a | |
252 | series of changesets based on matching commit log entries and |
|
257 | series of changesets based on matching commit log entries and | |
253 | dates.''' |
|
258 | dates.''' | |
254 | return cvsps.debugcvsps(ui, *args, **opts) |
|
259 | return cvsps.debugcvsps(ui, *args, **opts) | |
255 |
|
260 | |||
256 | commands.norepo += " convert debugsvnlog debugcvsps" |
|
261 | commands.norepo += " convert debugsvnlog debugcvsps" | |
257 |
|
262 | |||
258 | cmdtable = { |
|
263 | cmdtable = { | |
259 | "convert": |
|
264 | "convert": | |
260 | (convert, |
|
265 | (convert, | |
261 | [('A', 'authors', '', |
|
266 | [('A', 'authors', '', | |
262 | _('username mapping filename'), _('FILE')), |
|
267 | _('username mapping filename'), _('FILE')), | |
263 | ('d', 'dest-type', '', |
|
268 | ('d', 'dest-type', '', | |
264 | _('destination repository type'), _('TYPE')), |
|
269 | _('destination repository type'), _('TYPE')), | |
265 | ('', 'filemap', '', |
|
270 | ('', 'filemap', '', | |
266 | _('remap file names using contents of file'), _('FILE')), |
|
271 | _('remap file names using contents of file'), _('FILE')), | |
267 | ('r', 'rev', '', |
|
272 | ('r', 'rev', '', | |
268 | _('import up to target revision REV'), _('REV')), |
|
273 | _('import up to target revision REV'), _('REV')), | |
269 | ('s', 'source-type', '', |
|
274 | ('s', 'source-type', '', | |
270 | _('source repository type'), _('TYPE')), |
|
275 | _('source repository type'), _('TYPE')), | |
271 | ('', 'splicemap', '', |
|
276 | ('', 'splicemap', '', | |
272 | _('splice synthesized history into place'), _('FILE')), |
|
277 | _('splice synthesized history into place'), _('FILE')), | |
273 | ('', 'branchmap', '', |
|
278 | ('', 'branchmap', '', | |
274 | _('change branch names while converting'), _('FILE')), |
|
279 | _('change branch names while converting'), _('FILE')), | |
275 | ('', 'branchsort', None, _('try to sort changesets by branches')), |
|
280 | ('', 'branchsort', None, _('try to sort changesets by branches')), | |
276 | ('', 'datesort', None, _('try to sort changesets by date')), |
|
281 | ('', 'datesort', None, _('try to sort changesets by date')), | |
277 | ('', 'sourcesort', None, _('preserve source changesets order'))], |
|
282 | ('', 'sourcesort', None, _('preserve source changesets order'))], | |
278 | _('hg convert [OPTION]... SOURCE [DEST [REVMAP]]')), |
|
283 | _('hg convert [OPTION]... SOURCE [DEST [REVMAP]]')), | |
279 | "debugsvnlog": |
|
284 | "debugsvnlog": | |
280 | (debugsvnlog, |
|
285 | (debugsvnlog, | |
281 | [], |
|
286 | [], | |
282 | 'hg debugsvnlog'), |
|
287 | 'hg debugsvnlog'), | |
283 | "debugcvsps": |
|
288 | "debugcvsps": | |
284 | (debugcvsps, |
|
289 | (debugcvsps, | |
285 | [ |
|
290 | [ | |
286 | # Main options shared with cvsps-2.1 |
|
291 | # Main options shared with cvsps-2.1 | |
287 | ('b', 'branches', [], _('only return changes on specified branches')), |
|
292 | ('b', 'branches', [], _('only return changes on specified branches')), | |
288 | ('p', 'prefix', '', _('prefix to remove from file names')), |
|
293 | ('p', 'prefix', '', _('prefix to remove from file names')), | |
289 | ('r', 'revisions', [], |
|
294 | ('r', 'revisions', [], | |
290 | _('only return changes after or between specified tags')), |
|
295 | _('only return changes after or between specified tags')), | |
291 | ('u', 'update-cache', None, _("update cvs log cache")), |
|
296 | ('u', 'update-cache', None, _("update cvs log cache")), | |
292 | ('x', 'new-cache', None, _("create new cvs log cache")), |
|
297 | ('x', 'new-cache', None, _("create new cvs log cache")), | |
293 | ('z', 'fuzz', 60, _('set commit time fuzz in seconds')), |
|
298 | ('z', 'fuzz', 60, _('set commit time fuzz in seconds')), | |
294 | ('', 'root', '', _('specify cvsroot')), |
|
299 | ('', 'root', '', _('specify cvsroot')), | |
295 | # Options specific to builtin cvsps |
|
300 | # Options specific to builtin cvsps | |
296 | ('', 'parents', '', _('show parent changesets')), |
|
301 | ('', 'parents', '', _('show parent changesets')), | |
297 | ('', 'ancestors', '', _('show current changeset in ancestor branches')), |
|
302 | ('', 'ancestors', '', _('show current changeset in ancestor branches')), | |
298 | # Options that are ignored for compatibility with cvsps-2.1 |
|
303 | # Options that are ignored for compatibility with cvsps-2.1 | |
299 | ('A', 'cvs-direct', None, _('ignored for compatibility')), |
|
304 | ('A', 'cvs-direct', None, _('ignored for compatibility')), | |
300 | ], |
|
305 | ], | |
301 | _('hg debugcvsps [OPTION]... [PATH]...')), |
|
306 | _('hg debugcvsps [OPTION]... [PATH]...')), | |
302 | } |
|
307 | } |
@@ -1,302 +1,306 | |||||
1 | hg convert [OPTION]... SOURCE [DEST [REVMAP]] |
|
1 | hg convert [OPTION]... SOURCE [DEST [REVMAP]] | |
2 |
|
2 | |||
3 | convert a foreign SCM repository to a Mercurial one. |
|
3 | convert a foreign SCM repository to a Mercurial one. | |
4 |
|
4 | |||
5 | Accepted source formats [identifiers]: |
|
5 | Accepted source formats [identifiers]: | |
6 |
|
6 | |||
7 | - Mercurial [hg] |
|
7 | - Mercurial [hg] | |
8 | - CVS [cvs] |
|
8 | - CVS [cvs] | |
9 | - Darcs [darcs] |
|
9 | - Darcs [darcs] | |
10 | - git [git] |
|
10 | - git [git] | |
11 | - Subversion [svn] |
|
11 | - Subversion [svn] | |
12 | - Monotone [mtn] |
|
12 | - Monotone [mtn] | |
13 | - GNU Arch [gnuarch] |
|
13 | - GNU Arch [gnuarch] | |
14 | - Bazaar [bzr] |
|
14 | - Bazaar [bzr] | |
15 | - Perforce [p4] |
|
15 | - Perforce [p4] | |
16 |
|
16 | |||
17 | Accepted destination formats [identifiers]: |
|
17 | Accepted destination formats [identifiers]: | |
18 |
|
18 | |||
19 | - Mercurial [hg] |
|
19 | - Mercurial [hg] | |
20 | - Subversion [svn] (history on branches is not preserved) |
|
20 | - Subversion [svn] (history on branches is not preserved) | |
21 |
|
21 | |||
22 | If no revision is given, all revisions will be converted. Otherwise, |
|
22 | If no revision is given, all revisions will be converted. Otherwise, | |
23 | convert will only import up to the named revision (given in a format |
|
23 | convert will only import up to the named revision (given in a format | |
24 | understood by the source). |
|
24 | understood by the source). | |
25 |
|
25 | |||
26 | If no destination directory name is specified, it defaults to the basename |
|
26 | If no destination directory name is specified, it defaults to the basename | |
27 | of the source with '-hg' appended. If the destination repository doesn't |
|
27 | of the source with '-hg' appended. If the destination repository doesn't | |
28 | exist, it will be created. |
|
28 | exist, it will be created. | |
29 |
|
29 | |||
30 | By default, all sources except Mercurial will use --branchsort. Mercurial |
|
30 | By default, all sources except Mercurial will use --branchsort. Mercurial | |
31 | uses --sourcesort to preserve original revision numbers order. Sort modes |
|
31 | uses --sourcesort to preserve original revision numbers order. Sort modes | |
32 | have the following effects: |
|
32 | have the following effects: | |
33 |
|
33 | |||
34 | --branchsort convert from parent to child revision when possible, which |
|
34 | --branchsort convert from parent to child revision when possible, which | |
35 | means branches are usually converted one after the other. It |
|
35 | means branches are usually converted one after the other. It | |
36 | generates more compact repositories. |
|
36 | generates more compact repositories. | |
37 | --datesort sort revisions by date. Converted repositories have good- |
|
37 | --datesort sort revisions by date. Converted repositories have good- | |
38 | looking changelogs but are often an order of magnitude |
|
38 | looking changelogs but are often an order of magnitude | |
39 | larger than the same ones generated by --branchsort. |
|
39 | larger than the same ones generated by --branchsort. | |
40 | --sourcesort try to preserve source revisions order, only supported by |
|
40 | --sourcesort try to preserve source revisions order, only supported by | |
41 | Mercurial sources. |
|
41 | Mercurial sources. | |
42 |
|
42 | |||
43 | If <REVMAP> isn't given, it will be put in a default location |
|
43 | If <REVMAP> isn't given, it will be put in a default location | |
44 | (<dest>/.hg/shamap by default). The <REVMAP> is a simple text file that |
|
44 | (<dest>/.hg/shamap by default). The <REVMAP> is a simple text file that | |
45 | maps each source commit ID to the destination ID for that revision, like |
|
45 | maps each source commit ID to the destination ID for that revision, like | |
46 | so: |
|
46 | so: | |
47 |
|
47 | |||
48 | <source ID> <destination ID> |
|
48 | <source ID> <destination ID> | |
49 |
|
49 | |||
50 | If the file doesn't exist, it's automatically created. It's updated on |
|
50 | If the file doesn't exist, it's automatically created. It's updated on | |
51 | each commit copied, so convert-repo can be interrupted and can be run |
|
51 | each commit copied, so convert-repo can be interrupted and can be run | |
52 | repeatedly to copy new commits. |
|
52 | repeatedly to copy new commits. | |
53 |
|
53 | |||
54 | The [username mapping] file is a simple text file that maps each source |
|
54 | The [username mapping] file is a simple text file that maps each source | |
55 | commit author to a destination commit author. It is handy for source SCMs |
|
55 | commit author to a destination commit author. It is handy for source SCMs | |
56 | that use unix logins to identify authors (eg: CVS). One line per author |
|
56 | that use unix logins to identify authors (eg: CVS). One line per author | |
57 | mapping and the line format is: srcauthor=whatever string you want |
|
57 | mapping and the line format is: srcauthor=whatever string you want | |
58 |
|
58 | |||
59 | The filemap is a file that allows filtering and remapping of files and |
|
59 | The filemap is a file that allows filtering and remapping of files and | |
60 |
directories. |
|
60 | directories. Each line can contain one of the following directives: | |
61 | the following directives: |
|
61 | ||
|
62 | include path/to/file-or-dir | |||
|
63 | ||||
|
64 | exclude path/to/file-or-dir | |||
62 |
|
65 | |||
63 | include path/to/file |
|
66 | rename path/to/source path/to/destination | |
64 |
|
67 | |||
65 | exclude path/to/file |
|
68 | Comment lines start with '#'. A specificed path matches if it equals the | |
66 |
|
69 | full relative name of a file or one of its parent directories. The | ||
67 | rename from/file to/file |
|
70 | 'include' or 'exclude' directive with the longest matching path applies, | |
|
71 | so line order does not matter. | |||
68 |
|
72 | |||
69 | The 'include' directive causes a file, or all files under a directory, to |
|
73 | The 'include' directive causes a file, or all files under a directory, to | |
70 | be included in the destination repository, and the exclusion of all other |
|
74 | be included in the destination repository, and the exclusion of all other | |
71 | files and directories not explicitly included. The 'exclude' directive |
|
75 | files and directories not explicitly included. The 'exclude' directive | |
72 | causes files or directories to be omitted. The 'rename' directive renames |
|
76 | causes files or directories to be omitted. The 'rename' directive renames | |
73 |
a file or directory. To rename from a subdirectory into |
|
77 | a file or directory if is converted. To rename from a subdirectory into | |
74 | repository, use '.' as the path to rename to. |
|
78 | the root of the repository, use '.' as the path to rename to. | |
75 |
|
79 | |||
76 | The splicemap is a file that allows insertion of synthetic history, |
|
80 | The splicemap is a file that allows insertion of synthetic history, | |
77 | letting you specify the parents of a revision. This is useful if you want |
|
81 | letting you specify the parents of a revision. This is useful if you want | |
78 | to e.g. give a Subversion merge two parents, or graft two disconnected |
|
82 | to e.g. give a Subversion merge two parents, or graft two disconnected | |
79 | series of history together. Each entry contains a key, followed by a |
|
83 | series of history together. Each entry contains a key, followed by a | |
80 | space, followed by one or two comma-separated values. The key is the |
|
84 | space, followed by one or two comma-separated values. The key is the | |
81 | revision ID in the source revision control system whose parents should be |
|
85 | revision ID in the source revision control system whose parents should be | |
82 | modified (same format as a key in .hg/shamap). The values are the revision |
|
86 | modified (same format as a key in .hg/shamap). The values are the revision | |
83 | IDs (in either the source or destination revision control system) that |
|
87 | IDs (in either the source or destination revision control system) that | |
84 | should be used as the new parents for that node. For example, if you have |
|
88 | should be used as the new parents for that node. For example, if you have | |
85 | merged "release-1.0" into "trunk", then you should specify the revision on |
|
89 | merged "release-1.0" into "trunk", then you should specify the revision on | |
86 | "trunk" as the first parent and the one on the "release-1.0" branch as the |
|
90 | "trunk" as the first parent and the one on the "release-1.0" branch as the | |
87 | second. |
|
91 | second. | |
88 |
|
92 | |||
89 | The branchmap is a file that allows you to rename a branch when it is |
|
93 | The branchmap is a file that allows you to rename a branch when it is | |
90 | being brought in from whatever external repository. When used in |
|
94 | being brought in from whatever external repository. When used in | |
91 | conjunction with a splicemap, it allows for a powerful combination to help |
|
95 | conjunction with a splicemap, it allows for a powerful combination to help | |
92 | fix even the most badly mismanaged repositories and turn them into nicely |
|
96 | fix even the most badly mismanaged repositories and turn them into nicely | |
93 | structured Mercurial repositories. The branchmap contains lines of the |
|
97 | structured Mercurial repositories. The branchmap contains lines of the | |
94 | form "original_branch_name new_branch_name". "original_branch_name" is the |
|
98 | form "original_branch_name new_branch_name". "original_branch_name" is the | |
95 | name of the branch in the source repository, and "new_branch_name" is the |
|
99 | name of the branch in the source repository, and "new_branch_name" is the | |
96 | name of the branch is the destination repository. This can be used to (for |
|
100 | name of the branch is the destination repository. This can be used to (for | |
97 | instance) move code in one repository from "default" to a named branch. |
|
101 | instance) move code in one repository from "default" to a named branch. | |
98 |
|
102 | |||
99 | Mercurial Source |
|
103 | Mercurial Source | |
100 | ---------------- |
|
104 | ---------------- | |
101 |
|
105 | |||
102 | --config convert.hg.ignoreerrors=False (boolean) |
|
106 | --config convert.hg.ignoreerrors=False (boolean) | |
103 | ignore integrity errors when reading. Use it to fix Mercurial |
|
107 | ignore integrity errors when reading. Use it to fix Mercurial | |
104 | repositories with missing revlogs, by converting from and to |
|
108 | repositories with missing revlogs, by converting from and to | |
105 | Mercurial. |
|
109 | Mercurial. | |
106 |
|
110 | |||
107 | --config convert.hg.saverev=False (boolean) |
|
111 | --config convert.hg.saverev=False (boolean) | |
108 | store original revision ID in changeset (forces target IDs to change) |
|
112 | store original revision ID in changeset (forces target IDs to change) | |
109 |
|
113 | |||
110 | --config convert.hg.startrev=0 (hg revision identifier) |
|
114 | --config convert.hg.startrev=0 (hg revision identifier) | |
111 | convert start revision and its descendants |
|
115 | convert start revision and its descendants | |
112 |
|
116 | |||
113 | CVS Source |
|
117 | CVS Source | |
114 | ---------- |
|
118 | ---------- | |
115 |
|
119 | |||
116 | CVS source will use a sandbox (i.e. a checked-out copy) from CVS to |
|
120 | CVS source will use a sandbox (i.e. a checked-out copy) from CVS to | |
117 | indicate the starting point of what will be converted. Direct access to |
|
121 | indicate the starting point of what will be converted. Direct access to | |
118 | the repository files is not needed, unless of course the repository is |
|
122 | the repository files is not needed, unless of course the repository is | |
119 | :local:. The conversion uses the top level directory in the sandbox to |
|
123 | :local:. The conversion uses the top level directory in the sandbox to | |
120 | find the CVS repository, and then uses CVS rlog commands to find files to |
|
124 | find the CVS repository, and then uses CVS rlog commands to find files to | |
121 | convert. This means that unless a filemap is given, all files under the |
|
125 | convert. This means that unless a filemap is given, all files under the | |
122 | starting directory will be converted, and that any directory |
|
126 | starting directory will be converted, and that any directory | |
123 | reorganization in the CVS sandbox is ignored. |
|
127 | reorganization in the CVS sandbox is ignored. | |
124 |
|
128 | |||
125 | The options shown are the defaults. |
|
129 | The options shown are the defaults. | |
126 |
|
130 | |||
127 | --config convert.cvsps.cache=True (boolean) |
|
131 | --config convert.cvsps.cache=True (boolean) | |
128 | Set to False to disable remote log caching, for testing and debugging |
|
132 | Set to False to disable remote log caching, for testing and debugging | |
129 | purposes. |
|
133 | purposes. | |
130 |
|
134 | |||
131 | --config convert.cvsps.fuzz=60 (integer) |
|
135 | --config convert.cvsps.fuzz=60 (integer) | |
132 | Specify the maximum time (in seconds) that is allowed between commits |
|
136 | Specify the maximum time (in seconds) that is allowed between commits | |
133 | with identical user and log message in a single changeset. When very |
|
137 | with identical user and log message in a single changeset. When very | |
134 | large files were checked in as part of a changeset then the default |
|
138 | large files were checked in as part of a changeset then the default | |
135 | may not be long enough. |
|
139 | may not be long enough. | |
136 |
|
140 | |||
137 | --config convert.cvsps.mergeto='{{mergetobranch ([-\w]+)}}' |
|
141 | --config convert.cvsps.mergeto='{{mergetobranch ([-\w]+)}}' | |
138 | Specify a regular expression to which commit log messages are matched. |
|
142 | Specify a regular expression to which commit log messages are matched. | |
139 | If a match occurs, then the conversion process will insert a dummy |
|
143 | If a match occurs, then the conversion process will insert a dummy | |
140 | revision merging the branch on which this log message occurs to the |
|
144 | revision merging the branch on which this log message occurs to the | |
141 | branch indicated in the regex. |
|
145 | branch indicated in the regex. | |
142 |
|
146 | |||
143 | --config convert.cvsps.mergefrom='{{mergefrombranch ([-\w]+)}}' |
|
147 | --config convert.cvsps.mergefrom='{{mergefrombranch ([-\w]+)}}' | |
144 | Specify a regular expression to which commit log messages are matched. |
|
148 | Specify a regular expression to which commit log messages are matched. | |
145 | If a match occurs, then the conversion process will add the most |
|
149 | If a match occurs, then the conversion process will add the most | |
146 | recent revision on the branch indicated in the regex as the second |
|
150 | recent revision on the branch indicated in the regex as the second | |
147 | parent of the changeset. |
|
151 | parent of the changeset. | |
148 |
|
152 | |||
149 | --config hook.cvslog |
|
153 | --config hook.cvslog | |
150 | Specify a Python function to be called at the end of gathering the CVS |
|
154 | Specify a Python function to be called at the end of gathering the CVS | |
151 | log. The function is passed a list with the log entries, and can |
|
155 | log. The function is passed a list with the log entries, and can | |
152 | modify the entries in-place, or add or delete them. |
|
156 | modify the entries in-place, or add or delete them. | |
153 |
|
157 | |||
154 | --config hook.cvschangesets |
|
158 | --config hook.cvschangesets | |
155 | Specify a Python function to be called after the changesets are |
|
159 | Specify a Python function to be called after the changesets are | |
156 | calculated from the the CVS log. The function is passed a list with |
|
160 | calculated from the the CVS log. The function is passed a list with | |
157 | the changeset entries, and can modify the changesets in-place, or add |
|
161 | the changeset entries, and can modify the changesets in-place, or add | |
158 | or delete them. |
|
162 | or delete them. | |
159 |
|
163 | |||
160 | An additional "debugcvsps" Mercurial command allows the builtin changeset |
|
164 | An additional "debugcvsps" Mercurial command allows the builtin changeset | |
161 | merging code to be run without doing a conversion. Its parameters and |
|
165 | merging code to be run without doing a conversion. Its parameters and | |
162 | output are similar to that of cvsps 2.1. Please see the command help for |
|
166 | output are similar to that of cvsps 2.1. Please see the command help for | |
163 | more details. |
|
167 | more details. | |
164 |
|
168 | |||
165 | Subversion Source |
|
169 | Subversion Source | |
166 | ----------------- |
|
170 | ----------------- | |
167 |
|
171 | |||
168 | Subversion source detects classical trunk/branches/tags layouts. By |
|
172 | Subversion source detects classical trunk/branches/tags layouts. By | |
169 | default, the supplied "svn://repo/path/" source URL is converted as a |
|
173 | default, the supplied "svn://repo/path/" source URL is converted as a | |
170 | single branch. If "svn://repo/path/trunk" exists it replaces the default |
|
174 | single branch. If "svn://repo/path/trunk" exists it replaces the default | |
171 | branch. If "svn://repo/path/branches" exists, its subdirectories are |
|
175 | branch. If "svn://repo/path/branches" exists, its subdirectories are | |
172 | listed as possible branches. If "svn://repo/path/tags" exists, it is |
|
176 | listed as possible branches. If "svn://repo/path/tags" exists, it is | |
173 | looked for tags referencing converted branches. Default "trunk", |
|
177 | looked for tags referencing converted branches. Default "trunk", | |
174 | "branches" and "tags" values can be overridden with following options. Set |
|
178 | "branches" and "tags" values can be overridden with following options. Set | |
175 | them to paths relative to the source URL, or leave them blank to disable |
|
179 | them to paths relative to the source URL, or leave them blank to disable | |
176 | auto detection. |
|
180 | auto detection. | |
177 |
|
181 | |||
178 | --config convert.svn.branches=branches (directory name) |
|
182 | --config convert.svn.branches=branches (directory name) | |
179 | specify the directory containing branches |
|
183 | specify the directory containing branches | |
180 |
|
184 | |||
181 | --config convert.svn.tags=tags (directory name) |
|
185 | --config convert.svn.tags=tags (directory name) | |
182 | specify the directory containing tags |
|
186 | specify the directory containing tags | |
183 |
|
187 | |||
184 | --config convert.svn.trunk=trunk (directory name) |
|
188 | --config convert.svn.trunk=trunk (directory name) | |
185 | specify the name of the trunk branch |
|
189 | specify the name of the trunk branch | |
186 |
|
190 | |||
187 | Source history can be retrieved starting at a specific revision, instead |
|
191 | Source history can be retrieved starting at a specific revision, instead | |
188 | of being integrally converted. Only single branch conversions are |
|
192 | of being integrally converted. Only single branch conversions are | |
189 | supported. |
|
193 | supported. | |
190 |
|
194 | |||
191 | --config convert.svn.startrev=0 (svn revision number) |
|
195 | --config convert.svn.startrev=0 (svn revision number) | |
192 | specify start Subversion revision. |
|
196 | specify start Subversion revision. | |
193 |
|
197 | |||
194 | Perforce Source |
|
198 | Perforce Source | |
195 | --------------- |
|
199 | --------------- | |
196 |
|
200 | |||
197 | The Perforce (P4) importer can be given a p4 depot path or a client |
|
201 | The Perforce (P4) importer can be given a p4 depot path or a client | |
198 | specification as source. It will convert all files in the source to a flat |
|
202 | specification as source. It will convert all files in the source to a flat | |
199 | Mercurial repository, ignoring labels, branches and integrations. Note |
|
203 | Mercurial repository, ignoring labels, branches and integrations. Note | |
200 | that when a depot path is given you then usually should specify a target |
|
204 | that when a depot path is given you then usually should specify a target | |
201 | directory, because otherwise the target may be named ...-hg. |
|
205 | directory, because otherwise the target may be named ...-hg. | |
202 |
|
206 | |||
203 | It is possible to limit the amount of source history to be converted by |
|
207 | It is possible to limit the amount of source history to be converted by | |
204 | specifying an initial Perforce revision. |
|
208 | specifying an initial Perforce revision. | |
205 |
|
209 | |||
206 | --config convert.p4.startrev=0 (perforce changelist number) |
|
210 | --config convert.p4.startrev=0 (perforce changelist number) | |
207 | specify initial Perforce revision. |
|
211 | specify initial Perforce revision. | |
208 |
|
212 | |||
209 | Mercurial Destination |
|
213 | Mercurial Destination | |
210 | --------------------- |
|
214 | --------------------- | |
211 |
|
215 | |||
212 | --config convert.hg.clonebranches=False (boolean) |
|
216 | --config convert.hg.clonebranches=False (boolean) | |
213 | dispatch source branches in separate clones. |
|
217 | dispatch source branches in separate clones. | |
214 |
|
218 | |||
215 | --config convert.hg.tagsbranch=default (branch name) |
|
219 | --config convert.hg.tagsbranch=default (branch name) | |
216 | tag revisions branch name |
|
220 | tag revisions branch name | |
217 |
|
221 | |||
218 | --config convert.hg.usebranchnames=True (boolean) |
|
222 | --config convert.hg.usebranchnames=True (boolean) | |
219 | preserve branch names |
|
223 | preserve branch names | |
220 |
|
224 | |||
221 | options: |
|
225 | options: | |
222 |
|
226 | |||
223 | -A --authors FILE username mapping filename |
|
227 | -A --authors FILE username mapping filename | |
224 | -d --dest-type TYPE destination repository type |
|
228 | -d --dest-type TYPE destination repository type | |
225 | --filemap FILE remap file names using contents of file |
|
229 | --filemap FILE remap file names using contents of file | |
226 | -r --rev REV import up to target revision REV |
|
230 | -r --rev REV import up to target revision REV | |
227 | -s --source-type TYPE source repository type |
|
231 | -s --source-type TYPE source repository type | |
228 | --splicemap FILE splice synthesized history into place |
|
232 | --splicemap FILE splice synthesized history into place | |
229 | --branchmap FILE change branch names while converting |
|
233 | --branchmap FILE change branch names while converting | |
230 | --branchsort try to sort changesets by branches |
|
234 | --branchsort try to sort changesets by branches | |
231 | --datesort try to sort changesets by date |
|
235 | --datesort try to sort changesets by date | |
232 | --sourcesort preserve source changesets order |
|
236 | --sourcesort preserve source changesets order | |
233 |
|
237 | |||
234 | use "hg -v help convert" to show global options |
|
238 | use "hg -v help convert" to show global options | |
235 | adding a |
|
239 | adding a | |
236 | assuming destination a-hg |
|
240 | assuming destination a-hg | |
237 | initializing destination a-hg repository |
|
241 | initializing destination a-hg repository | |
238 | scanning source... |
|
242 | scanning source... | |
239 | sorting... |
|
243 | sorting... | |
240 | converting... |
|
244 | converting... | |
241 | 4 a |
|
245 | 4 a | |
242 | 3 b |
|
246 | 3 b | |
243 | 2 c |
|
247 | 2 c | |
244 | 1 d |
|
248 | 1 d | |
245 | 0 e |
|
249 | 0 e | |
246 | pulling from ../a |
|
250 | pulling from ../a | |
247 | searching for changes |
|
251 | searching for changes | |
248 | no changes found |
|
252 | no changes found | |
249 | % should fail |
|
253 | % should fail | |
250 | initializing destination bogusfile repository |
|
254 | initializing destination bogusfile repository | |
251 | abort: cannot create new bundle repository |
|
255 | abort: cannot create new bundle repository | |
252 | % should fail |
|
256 | % should fail | |
253 | abort: Permission denied: bogusdir |
|
257 | abort: Permission denied: bogusdir | |
254 | % should succeed |
|
258 | % should succeed | |
255 | initializing destination bogusdir repository |
|
259 | initializing destination bogusdir repository | |
256 | scanning source... |
|
260 | scanning source... | |
257 | sorting... |
|
261 | sorting... | |
258 | converting... |
|
262 | converting... | |
259 | 4 a |
|
263 | 4 a | |
260 | 3 b |
|
264 | 3 b | |
261 | 2 c |
|
265 | 2 c | |
262 | 1 d |
|
266 | 1 d | |
263 | 0 e |
|
267 | 0 e | |
264 | % test pre and post conversion actions |
|
268 | % test pre and post conversion actions | |
265 | run hg source pre-conversion action |
|
269 | run hg source pre-conversion action | |
266 | run hg sink pre-conversion action |
|
270 | run hg sink pre-conversion action | |
267 | run hg sink post-conversion action |
|
271 | run hg sink post-conversion action | |
268 | run hg source post-conversion action |
|
272 | run hg source post-conversion action | |
269 | % converting empty dir should fail nicely |
|
273 | % converting empty dir should fail nicely | |
270 | assuming destination emptydir-hg |
|
274 | assuming destination emptydir-hg | |
271 | initializing destination emptydir-hg repository |
|
275 | initializing destination emptydir-hg repository | |
272 | emptydir does not look like a CVS checkout |
|
276 | emptydir does not look like a CVS checkout | |
273 | emptydir does not look like a Git repository |
|
277 | emptydir does not look like a Git repository | |
274 | emptydir does not look like a Subversion repository |
|
278 | emptydir does not look like a Subversion repository | |
275 | emptydir is not a local Mercurial repository |
|
279 | emptydir is not a local Mercurial repository | |
276 | emptydir does not look like a darcs repository |
|
280 | emptydir does not look like a darcs repository | |
277 | emptydir does not look like a monotone repository |
|
281 | emptydir does not look like a monotone repository | |
278 | emptydir does not look like a GNU Arch repository |
|
282 | emptydir does not look like a GNU Arch repository | |
279 | emptydir does not look like a Bazaar repository |
|
283 | emptydir does not look like a Bazaar repository | |
280 | cannot find required "p4" tool |
|
284 | cannot find required "p4" tool | |
281 | abort: emptydir: missing or unsupported repository |
|
285 | abort: emptydir: missing or unsupported repository | |
282 | % convert with imaginary source type |
|
286 | % convert with imaginary source type | |
283 | initializing destination a-foo repository |
|
287 | initializing destination a-foo repository | |
284 | abort: foo: invalid source repository type |
|
288 | abort: foo: invalid source repository type | |
285 | % convert with imaginary sink type |
|
289 | % convert with imaginary sink type | |
286 | abort: foo: invalid destination repository type |
|
290 | abort: foo: invalid destination repository type | |
287 |
|
291 | |||
288 | % testing: convert must not produce duplicate entries in fncache |
|
292 | % testing: convert must not produce duplicate entries in fncache | |
289 | initializing destination b repository |
|
293 | initializing destination b repository | |
290 | scanning source... |
|
294 | scanning source... | |
291 | sorting... |
|
295 | sorting... | |
292 | converting... |
|
296 | converting... | |
293 | 4 a |
|
297 | 4 a | |
294 | 3 b |
|
298 | 3 b | |
295 | 2 c |
|
299 | 2 c | |
296 | 1 d |
|
300 | 1 d | |
297 | 0 e |
|
301 | 0 e | |
298 | % contents of fncache file: |
|
302 | % contents of fncache file: | |
299 | data/a.i |
|
303 | data/a.i | |
300 | data/b.i |
|
304 | data/b.i | |
301 | % test bogus URL |
|
305 | % test bogus URL | |
302 | abort: bzr+ssh://foobar@selenic.com/baz: missing or unsupported repository |
|
306 | abort: bzr+ssh://foobar@selenic.com/baz: missing or unsupported repository |
General Comments 0
You need to be logged in to leave comments.
Login now