diff options
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/help.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/builtin/help.c b/builtin/help.c index b6fc15e5b0..1fdefeb686 100644 --- a/builtin/help.c +++ b/builtin/help.c @@ -288,6 +288,9 @@ static struct cmdnames main_cmds, other_cmds; static int is_git_command(const char *s) { + if (is_builtin(s)) + return 1; + load_command_list("git-", &main_cmds, &other_cmds); return is_in_cmdlist(&main_cmds, s) || is_in_cmdlist(&other_cmds, s); |