##// 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 145 you want to close a branch. Each entry contains a revision or hash
146 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 152 Mercurial Source
149 153 ################
150 154
@@ -325,6 +329,8 b' cmdtable = {'
325 329 _('change branch names while converting'), _('FILE')),
326 330 ('', 'closemap', '',
327 331 _('closes given revs'), _('FILE')),
332 ('', 'tagmap', '',
333 _('change tag names while converting'), _('FILE')),
328 334 ('', 'branchsort', None, _('try to sort changesets by branches')),
329 335 ('', 'datesort', None, _('try to sort changesets by date')),
330 336 ('', 'sourcesort', None, _('preserve source changesets order')),
@@ -125,6 +125,10 b''
125 125 you want to close a branch. Each entry contains a revision or hash
126 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 132 Mercurial Source
129 133 ################
130 134
@@ -271,6 +275,7 b''
271 275 --splicemap FILE splice synthesized history into place
272 276 --branchmap FILE change branch names while converting
273 277 --closemap FILE closes given revs
278 --tagmap FILE change tag names while converting
274 279 --branchsort try to sort changesets by branches
275 280 --datesort try to sort changesets by date
276 281 --sourcesort preserve source changesets order
General Comments 0
You need to be logged in to leave comments. Login now