##// END OF EJS Templates
histedit: use better meta-variable names than VALUE in help text...
Anton Shestakov -
r24232:f9e87390 default
parent child Browse files
Show More
@@ -514,7 +514,7 b" actiontable = {'p': pick,"
514 514
515 515 @command('histedit',
516 516 [('', 'commands', '',
517 _('read history edits from the specified file')),
517 _('read history edits from the specified file'), _('FILE')),
518 518 ('c', 'continue', False, _('continue an edit already in progress')),
519 519 ('', 'edit-plan', False, _('edit remaining actions list')),
520 520 ('k', 'keep', False,
@@ -523,7 +523,7 b" actiontable = {'p': pick,"
523 523 ('o', 'outgoing', False, _('changesets not found in destination')),
524 524 ('f', 'force', False,
525 525 _('force outgoing even for unrelated repositories')),
526 ('r', 'rev', [], _('first revision to be edited'))],
526 ('r', 'rev', [], _('first revision to be edited'), _('REV'))],
527 527 _("ANCESTOR | --outgoing [URL]"))
528 528 def histedit(ui, repo, *freeargs, **opts):
529 529 """interactively edit changeset history
General Comments 0
You need to be logged in to leave comments. Login now