##// END OF EJS Templates
phase: lowercase option help, rephrase slightly
Martin Geisler -
r15849:513ca86b default
parent child Browse files
Show More
@@ -4216,9 +4216,9 b' def paths(ui, repo, search=None):'
4216 4216 ui.write("%s = %s\n" % (name, util.hidepassword(path)))
4217 4217
4218 4218 @command('^phase',
4219 [('p', 'public', False, _('Set changeset to public')),
4220 ('d', 'draft', False, _('Set changeset to draft')),
4221 ('s', 'secret', False, _('Set changeset to secret')),
4219 [('p', 'public', False, _('set changeset phase to public')),
4220 ('d', 'draft', False, _('set changeset phase to draft')),
4221 ('s', 'secret', False, _('set changeset phase to secret')),
4222 4222 ('f', 'force', False, _('allow to move boundary backward')),
4223 4223 ('r', 'rev', [], _('target revision')),
4224 4224 ],
General Comments 0
You need to be logged in to leave comments. Login now