diff options
author | Andrew Wong <andrew.kw.w@gmail.com> | 2012-09-17 21:28:09 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-09-17 20:59:14 -0700 |
commit | eb9a7cb4bdbd4ea9c7e7ef2ca8de5b2753e3584c (patch) | |
tree | dbf2f2079d2d34e28d7abe3c3cc1f1fdc5ed9dfb /Documentation/git-rebase.txt | |
parent | fcc5ef1cc90ed49400bef51d306216f290eab9cc (diff) | |
download | git-eb9a7cb4bdbd4ea9c7e7ef2ca8de5b2753e3584c.tar.gz |
rebase -i: Teach "--edit-todo" action
This allows users to edit the todo file while they're stopped in the
middle of an interactive rebase. When this action is executed, all
comments from the original todo file are stripped, and new help messages
are appended to the end.
Signed-off-by: Andrew Wong <andrew.kw.w@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-rebase.txt')
-rw-r--r-- | Documentation/git-rebase.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/git-rebase.txt b/Documentation/git-rebase.txt index fd535b06ab..da067ecafa 100644 --- a/Documentation/git-rebase.txt +++ b/Documentation/git-rebase.txt @@ -12,7 +12,7 @@ SYNOPSIS [<upstream>] [<branch>] 'git rebase' [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>] --root [<branch>] -'git rebase' --continue | --skip | --abort +'git rebase' --continue | --skip | --abort | --edit-todo DESCRIPTION ----------- @@ -245,6 +245,9 @@ leave out at most one of A and B, in which case it defaults to HEAD. --skip:: Restart the rebasing process by skipping the current patch. +--edit-todo:: + Edit the todo list during an interactive rebase. + -m:: --merge:: Use merging strategies to rebase. When the recursive (default) merge |