##// END OF EJS Templates
convert: rename MAPFILE into REVMAP to disambiguate with filemap
Patrick Mezard -
r6238:aac27059 default
parent child Browse files
Show More
@@ -33,8 +33,8 b' def convert(ui, src, dest=None, revmapfi'
33 basename of the source with '-hg' appended. If the destination
33 basename of the source with '-hg' appended. If the destination
34 repository doesn't exist, it will be created.
34 repository doesn't exist, it will be created.
35
35
36 If <MAPFILE> isn't given, it will be put in a default location
36 If <REVMAP> isn't given, it will be put in a default location
37 (<dest>/.hg/shamap by default). The <MAPFILE> is a simple text
37 (<dest>/.hg/shamap by default). The <REVMAP> is a simple text
38 file that maps each source commit ID to the destination ID for
38 file that maps each source commit ID to the destination ID for
39 that revision, like so:
39 that revision, like so:
40 <source ID> <destination ID>
40 <source ID> <destination ID>
@@ -140,7 +140,7 b' cmdtable = {'
140 ('s', 'source-type', '', 'source repository type'),
140 ('s', 'source-type', '', 'source repository type'),
141 ('', 'splicemap', '', 'splice synthesized history into place'),
141 ('', 'splicemap', '', 'splice synthesized history into place'),
142 ('', 'datesort', None, 'try to sort changesets by date')],
142 ('', 'datesort', None, 'try to sort changesets by date')],
143 'hg convert [OPTION]... SOURCE [DEST [MAPFILE]]'),
143 'hg convert [OPTION]... SOURCE [DEST [REVMAP]]'),
144 "debugsvnlog":
144 "debugsvnlog":
145 (debugsvnlog,
145 (debugsvnlog,
146 [],
146 [],
@@ -1,4 +1,4 b''
1 hg convert [OPTION]... SOURCE [DEST [MAPFILE]]
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
@@ -22,8 +22,8 b' Convert a foreign SCM repository to a Me'
22 basename of the source with '-hg' appended. If the destination
22 basename of the source with '-hg' appended. If the destination
23 repository doesn't exist, it will be created.
23 repository doesn't exist, it will be created.
24
24
25 If <MAPFILE> isn't given, it will be put in a default location
25 If <REVMAP> isn't given, it will be put in a default location
26 (<dest>/.hg/shamap by default). The <MAPFILE> is a simple text
26 (<dest>/.hg/shamap by default). The <REVMAP> is a simple text
27 file that maps each source commit ID to the destination ID for
27 file that maps each source commit ID to the destination ID for
28 that revision, like so:
28 that revision, like so:
29 <source ID> <destination ID>
29 <source ID> <destination ID>
General Comments 0
You need to be logged in to leave comments. Login now