##// END OF EJS Templates
histedit: explain basics of histedit commands...
timeless -
r27713:fb2c77ba default
parent child Browse files
Show More
@@ -871,8 +871,21 b' def findoutgoing(ui, repo, remote=None, '
871 def histedit(ui, repo, *freeargs, **opts):
871 def histedit(ui, repo, *freeargs, **opts):
872 """interactively edit changeset history
872 """interactively edit changeset history
873
873
874 This command edits changesets between an ANCESTOR and the parent of
874 This command lets you edit a linear series of changesets (up to
875 the working directory.
875 and including the working directory, which should be clean).
876 You can::
877
878 - `pick` to [re]order a changeset
879
880 - `drop` to omit changeset
881
882 - `mess` to reword the changeset commit message
883
884 - `fold` to combine it with the preceding changeset
885
886 - `roll` like fold, but discarding this commit's description
887
888 - `edit` to edit this changeset
876
889
877 The value from the "histedit.defaultrev" config option is used as a
890 The value from the "histedit.defaultrev" config option is used as a
878 revset to select the base revision when ANCESTOR is not specified.
891 revset to select the base revision when ANCESTOR is not specified.
General Comments 0
You need to be logged in to leave comments. Login now