mercurial/commands.py
branchstable
changeset 17981 e689b0d91546
parent 17949 407209261f63
child 17984 b74361cf7c0a
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')),