comparison mercurial/commands.py @ 15855:09757185ce97

phase: add metavar to -r help text
author Martin Geisler <mg@aragost.com>
date Fri, 13 Jan 2012 11:53:51 +0100
parents 2260e6ed09c3
children 6bed6cc6d0d0
comparison
equal deleted inserted replaced
15854:2260e6ed09c3 15855:09757185ce97
4218 @command('^phase', 4218 @command('^phase',
4219 [('p', 'public', False, _('set changeset phase to public')), 4219 [('p', 'public', False, _('set changeset phase to public')),
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'), _('REV')),
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