##// END OF EJS Templates
histedit: add description about basic histedit function to command help...
FUJIWARA Katsunori -
r19621:11de0651 default
parent child Browse files
Show More
@@ -451,9 +451,12 b" actiontable = {'p': pick,"
451 451 ('f', 'force', False,
452 452 _('force outgoing even for unrelated repositories')),
453 453 ('r', 'rev', [], _('first revision to be edited'))],
454 _("[PARENT]"))
454 _("ANCESTOR"))
455 455 def histedit(ui, repo, *freeargs, **opts):
456 456 """interactively edit changeset history
457
458 This command edits changesets between ANCESTOR and the parent of
459 the working directory.
457 460 """
458 461 # TODO only abort if we try and histedit mq patches, not just
459 462 # blanket if mq patches are applied somewhere
@@ -493,7 +496,7 b' def histedit(ui, repo, *freeargs, **opts'
493 496 revs.extend(freeargs)
494 497 if len(revs) != 1:
495 498 raise util.Abort(
496 _('histedit requires exactly one parent revision'))
499 _('histedit requires exactly one ancestor revision'))
497 500
498 501
499 502 if goal == 'continue':
General Comments 0
You need to be logged in to leave comments. Login now