mercurial/commands.py
changeset 15854 2260e6ed09c3
parent 15853 fbb68b382040
child 15855 09757185ce97
equal deleted inserted replaced
15853:fbb68b382040 15854:2260e6ed09c3
  4220      ('d', 'draft', False, _('set changeset phase to draft')),
  4220      ('d', 'draft', False, _('set changeset phase to draft')),
  4221      ('s', 'secret', False, _('set changeset phase to secret')),
  4221      ('s', 'secret', False, _('set changeset phase to secret')),
  4222      ('f', 'force', False, _('allow to move boundary backward')),
  4222      ('f', 'force', False, _('allow to move boundary backward')),
  4223      ('r', 'rev', [], _('target revision')),
  4223      ('r', 'rev', [], _('target revision')),
  4224     ],
  4224     ],
  4225     _('[-p|-d|-s] [-f] [-r] REV'))
  4225     _('[-p|-d|-s] [-f] [-r] REV...'))
  4226 def phase(ui, repo, *revs, **opts):
  4226 def phase(ui, repo, *revs, **opts):
  4227     """set or show the current phase name
  4227     """set or show the current phase name
  4228 
  4228 
  4229     With no argument, show the phase name of specified revisions.
  4229     With no argument, show the phase name of specified revisions.
  4230 
  4230