##// END OF EJS Templates
histedit: add description about "histedit --outgoing" to command help...
FUJIWARA Katsunori -
r19644:bd5c1b49 stable
parent child Browse files
Show More
@@ -451,12 +451,16 b" actiontable = {'p': pick,"
451 ('f', 'force', False,
451 ('f', 'force', False,
452 _('force outgoing even for unrelated repositories')),
452 _('force outgoing even for unrelated repositories')),
453 ('r', 'rev', [], _('first revision to be edited'))],
453 ('r', 'rev', [], _('first revision to be edited'))],
454 _("ANCESTOR"))
454 _("ANCESTOR | --outgoing [URL]"))
455 def histedit(ui, repo, *freeargs, **opts):
455 def histedit(ui, repo, *freeargs, **opts):
456 """interactively edit changeset history
456 """interactively edit changeset history
457
457
458 This command edits changesets between ANCESTOR and the parent of
458 This command edits changesets between ANCESTOR and the parent of
459 the working directory.
459 the working directory.
460
461 With --outgoing, this edits changesets not found in the
462 destination repository. If URL of the destination is omitted, the
463 'default-push' (or 'default') path will be used.
460 """
464 """
461 # TODO only abort if we try and histedit mq patches, not just
465 # TODO only abort if we try and histedit mq patches, not just
462 # blanket if mq patches are applied somewhere
466 # blanket if mq patches are applied somewhere
General Comments 0
You need to be logged in to leave comments. Login now