rebase interactive asks the user to fix unknown commands but it did not
tell how to continue.
This commits adds a hint how to continue.
Signed-off-by: Steffen Prohaska <redacted>
---
git-rebase--interactive.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index acdcc54..d4bd811 100755
--- a/git-rebase--interactive.sh
+++ b/git-rebase--interactive.sh
@@ -310,7 +310,7 @@ do_next () {
;;
*)
warn "Unknown command: $command $sha1 $rest"
- die_with_patch $sha1 "Please fix this in the file $TODO."
+ die_with_patch $sha1 "Please fix this in the file $TODO. And run 'git rebase --continue'."
;;
esac
test -s "$TODO" && return--
1.5.4.rc2.26.g1deb