mirror of
https://github.com/git/git.git
synced 2024-11-24 10:26:17 +08:00
Merge branch 'jk/unbreak-am-h'
"git am -h" triggered a BUG(). * jk/unbreak-am-h: am: handle "-h" argument earlier
This commit is contained in:
commit
fe3bf4cb52
@ -2311,6 +2311,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);
|
||||
|
Loading…
Reference in New Issue
Block a user