summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2017-05-30 05:11:23 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-05-30 05:39:47 (GMT)
commitf3a2fffe06d13b216cbc18acba5a46b8a00ae326 (patch)
treee1c0add6c48819ef7ceb42a1d71aae3ee54b897b
parentb06d3643105c8758ed019125a4399cb7efdcce2c (diff)
downloadgit-f3a2fffe06d13b216cbc18acba5a46b8a00ae326.zip
git-f3a2fffe06d13b216cbc18acba5a46b8a00ae326.tar.gz
git-f3a2fffe06d13b216cbc18acba5a46b8a00ae326.tar.bz2
am: handle "-h" argument earlier
If the user provides "-h" on the command line, then our parse_options() invocation will show a usage message and quit. But if "-h" is the only argument, the git wrapper behaves specially: it ignores our RUN_SETUP flag and calls cmd_am() without having done repository setup at all. This is due to 99caeed05 (Let 'git <command> -h' show usage without a git dir, 2009-11-09). Before cmd_am() calls parse_options(), though, it runs a few other setup functions. One of these is am_state_init(), which uses git_pathdup() to set up the default rebase-apply path. But calling git_pathdup() when we haven't done repository setup will fall back to using ".git". That's mostly harmless (since we won't use the value anyway), but is forbidden since b1ef400eec ("setup_git_env: avoid blind fall-back to ".git"", 2016-10-20), and we now BUG(). We can't easily move that setup to after the parse_options() call; the point is to set up defaults that are overwritten by the option parsing. Instead, we'll detect the "-h" case early and show the usage then. This matches the behavior of other builtins which have a similar setup-ordering issue (e.g., git-branch). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--builtin/am.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/builtin/am.c b/builtin/am.c
index a95dd8b..c74df14 100644
--- a/builtin/am.c
+++ b/builtin/am.c
@@ -2319,6 +2319,9 @@ int cmd_am(int argc, const char **argv, const char *prefix)
OPT_END()
};
+ if (argc == 2 && !strcmp(argv[1], "-h"))
+ usage_with_options(usage, options);
+
git_config(git_am_config, NULL);
am_state_init(&state);