diff options
author | Jonathan del Strother <maillist@steelskies.com> | 2008-02-27 12:50:22 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-27 11:23:22 -0800 |
commit | 0460fb449b18cd95805c1bf97013957ee9b8ff9b (patch) | |
tree | d1cde14d97dfe10385b76574441a7122a54a4d4b | |
parent | a50a5c8fa66bf7077c986bcc39b3fdad17931e37 (diff) | |
download | git-0460fb449b18cd95805c1bf97013957ee9b8ff9b.tar.gz git-0460fb449b18cd95805c1bf97013957ee9b8ff9b.tar.xz |
Prompt to continue when editing during rebase --interactive
On hitting an edit point in an interactive rebase, git should prompt
the user to run "git rebase --continue"
Signed-off-by: Jonathan del Strother <jon.delStrother@bestbefore.tv>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | git-rebase--interactive.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh index fb12b03b2..c2bedd622 100755 --- a/git-rebase--interactive.sh +++ b/git-rebase--interactive.sh @@ -268,6 +268,10 @@ do_next () { warn warn " git commit --amend" warn + warn "Once you are satisfied with your changes, run" + warn + warn " git rebase --continue" + warn exit 0 ;; squash|s) |