comparison mercurial/commands.py @ 17981:e689b0d91546 stable

command: remove phase from the list of basic command This is not a basic command. There is no reason new user should needs to know about it. Thanks to Matt Mackall for pointing this.
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
date Wed, 28 Nov 2012 11:20:56 +0100
parents 407209261f63
children b74361cf7c0a
comparison
equal deleted inserted replaced
17979:b3ec0b5fd777 17981:e689b0d91546
4493 if ui.quiet: 4493 if ui.quiet:
4494 ui.write("%s\n" % name) 4494 ui.write("%s\n" % name)
4495 else: 4495 else:
4496 ui.write("%s = %s\n" % (name, util.hidepassword(path))) 4496 ui.write("%s = %s\n" % (name, util.hidepassword(path)))
4497 4497
4498 @command('^phase', 4498 @command('phase',
4499 [('p', 'public', False, _('set changeset phase to public')), 4499 [('p', 'public', False, _('set changeset phase to public')),
4500 ('d', 'draft', False, _('set changeset phase to draft')), 4500 ('d', 'draft', False, _('set changeset phase to draft')),
4501 ('s', 'secret', False, _('set changeset phase to secret')), 4501 ('s', 'secret', False, _('set changeset phase to secret')),
4502 ('f', 'force', False, _('allow to move boundary backward')), 4502 ('f', 'force', False, _('allow to move boundary backward')),
4503 ('r', 'rev', [], _('target revision'), _('REV')), 4503 ('r', 'rev', [], _('target revision'), _('REV')),