summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-10-28 00:03:24 -0700
committerJunio C Hamano <gitster@pobox.com>2009-10-28 00:03:24 -0700
commitaab748636dbbd6412af6f4996c2791eba4246c0c (patch)
treec80f0114021a14cd0263a98c2687cc8261e5dff1
parentade2ca0ca9f8335be300d5538e1ca9cb3594ae64 (diff)
parentf1be316ada93158507c315ee7948bb9e6007eb91 (diff)
downloadgit-aab748636dbbd6412af6f4996c2791eba4246c0c.tar.gz
Merge branch 'maint-1.6.4' into maint
* maint-1.6.4: rebase -i: more graceful handling of invalid commands help -i: properly error out if no info viewer can be found
-rw-r--r--builtin-help.c1
-rwxr-xr-xgit-rebase--interactive.sh7
2 files changed, 7 insertions, 1 deletions
diff --git a/builtin-help.c b/builtin-help.c
index e1eba778a5..e1ade8edd3 100644
--- a/builtin-help.c
+++ b/builtin-help.c
@@ -372,6 +372,7 @@ static void show_info_page(const char *git_cmd)
const char *page = cmd_to_page(git_cmd);
setenv("INFOPATH", system_path(GIT_INFO_PATH), 1);
execlp("info", "info", "gitman", page, NULL);
+ die("no info viewer handled the request");
}
static void get_html_page_path(struct strbuf *page_path, const char *page)
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index 23ded48322..9b1e899e27 100755
--- a/git-rebase--interactive.sh
+++ b/git-rebase--interactive.sh
@@ -408,7 +408,12 @@ do_next () {
;;
*)
warn "Unknown command: $command $sha1 $rest"
- die_with_patch $sha1 "Please fix this in the file $TODO."
+ if git rev-parse --verify -q "$sha1" >/dev/null
+ then
+ die_with_patch $sha1 "Please fix this in the file $TODO."
+ else
+ die "Please fix this in the file $TODO."
+ fi
;;
esac
test -s "$TODO" && return