comparison hgext/convert/__init__.py @ 13429:0079fb98e8d0 stable

convert: fix typos in docstring
author Wagner Bruna <wbruna@softwareexpress.com.br>
date Wed, 16 Feb 2011 21:02:19 -0200
parents 2f1174b2c4fa
children 3178aca36b0f
comparison
equal deleted inserted replaced
13428:5ef29e0dd418 13429:0079fb98e8d0
143 143
144 :convert.hg.ignoreerrors: ignore integrity errors when reading. 144 :convert.hg.ignoreerrors: ignore integrity errors when reading.
145 Use it to fix Mercurial repositories with missing revlogs, by 145 Use it to fix Mercurial repositories with missing revlogs, by
146 converting from and to Mercurial. Default is False. 146 converting from and to Mercurial. Default is False.
147 147
148 :convert.hg.saverev: store original. revision ID in changeset 148 :convert.hg.saverev: store original revision ID in changeset
149 (forces target IDs to change). It takes and boolean argument 149 (forces target IDs to change). It takes and boolean argument
150 and defaults to False. 150 and defaults to False.
151 151
152 :convert.hg.startrev: convert start revision and its descendants. 152 :convert.hg.startrev: convert start revision and its descendants.
153 It takes a hg revision identifier and defaults to 0. 153 It takes a hg revision identifier and defaults to 0.
247 target may be named ``...-hg``. 247 target may be named ``...-hg``.
248 248
249 It is possible to limit the amount of source history to be 249 It is possible to limit the amount of source history to be
250 converted by specifying an initial Perforce revision: 250 converted by specifying an initial Perforce revision:
251 251
252 :convert.p4.startrev: specify initial Perforce revision, a 252 :convert.p4.startrev: specify initial Perforce revision (a
253 Perforce changelist number). 253 Perforce changelist number).
254 254
255 Mercurial Destination 255 Mercurial Destination
256 ''''''''''''''''''''' 256 '''''''''''''''''''''
257 257
262 262
263 :convert.hg.tagsbranch: branch name for tag revisions, defaults to 263 :convert.hg.tagsbranch: branch name for tag revisions, defaults to
264 ``default``. 264 ``default``.
265 265
266 :convert.hg.usebranchnames: preserve branch names. The default is 266 :convert.hg.usebranchnames: preserve branch names. The default is
267 True 267 True.
268 """ 268 """
269 return convcmd.convert(ui, src, dest, revmapfile, **opts) 269 return convcmd.convert(ui, src, dest, revmapfile, **opts)
270 270
271 def debugsvnlog(ui, **opts): 271 def debugsvnlog(ui, **opts):
272 return subversion.debugsvnlog(ui, **opts) 272 return subversion.debugsvnlog(ui, **opts)