##// END OF EJS Templates
convert: add tagmap option...
Sean Farley -
r20379:b75a0450 default
parent child Browse files
Show More
@@ -145,6 +145,10 b' def convert(ui, src, dest=None, revmapfi'
145 you want to close a branch. Each entry contains a revision or hash
145 you want to close a branch. Each entry contains a revision or hash
146 separated by white space.
146 separated by white space.
147
147
148 The tagpmap is a file that exactly analogous to the branchmap. This will
149 rename tags on the fly and prevent the 'update tags' commit usually found
150 at the end of a convert process.
151
148 Mercurial Source
152 Mercurial Source
149 ################
153 ################
150
154
@@ -325,6 +329,8 b' cmdtable = {'
325 _('change branch names while converting'), _('FILE')),
329 _('change branch names while converting'), _('FILE')),
326 ('', 'closemap', '',
330 ('', 'closemap', '',
327 _('closes given revs'), _('FILE')),
331 _('closes given revs'), _('FILE')),
332 ('', 'tagmap', '',
333 _('change tag names while converting'), _('FILE')),
328 ('', 'branchsort', None, _('try to sort changesets by branches')),
334 ('', 'branchsort', None, _('try to sort changesets by branches')),
329 ('', 'datesort', None, _('try to sort changesets by date')),
335 ('', 'datesort', None, _('try to sort changesets by date')),
330 ('', 'sourcesort', None, _('preserve source changesets order')),
336 ('', 'sourcesort', None, _('preserve source changesets order')),
@@ -125,6 +125,10 b''
125 you want to close a branch. Each entry contains a revision or hash
125 you want to close a branch. Each entry contains a revision or hash
126 separated by white space.
126 separated by white space.
127
127
128 The tagpmap is a file that exactly analogous to the branchmap. This will
129 rename tags on the fly and prevent the 'update tags' commit usually found
130 at the end of a convert process.
131
128 Mercurial Source
132 Mercurial Source
129 ################
133 ################
130
134
@@ -271,6 +275,7 b''
271 --splicemap FILE splice synthesized history into place
275 --splicemap FILE splice synthesized history into place
272 --branchmap FILE change branch names while converting
276 --branchmap FILE change branch names while converting
273 --closemap FILE closes given revs
277 --closemap FILE closes given revs
278 --tagmap FILE change tag names while converting
274 --branchsort try to sort changesets by branches
279 --branchsort try to sort changesets by branches
275 --datesort try to sort changesets by date
280 --datesort try to sort changesets by date
276 --sourcesort preserve source changesets order
281 --sourcesort preserve source changesets order
General Comments 0
You need to be logged in to leave comments. Login now