diff options
author | Teemu Likonen <tlikonen@iki.fi> | 2008-06-06 00:15:36 +0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-06 09:22:18 -0700 |
commit | b7d9681974e61959f10c7b2c1063b7781c5b904e (patch) | |
tree | ee681ee4d4a2b0fe673eb0fd9b6a7a777208efd4 /builtin.h | |
parent | e919cb302e75141c2565106bed2f0b6cb8047570 (diff) | |
download | git-b7d9681974e61959f10c7b2c1063b7781c5b904e.tar.gz |
Print info about "git help COMMAND" on git's main usage pages
Git's main usage pages did not show "git help" as a way to get more
information on a specific subcommand. This patch adds an info line after
the list of git commands currently printed by "git", "git help", "git
--help" and "git help --all".
Signed-off-by: Teemu Likonen <tlikonen@iki.fi>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin.h')
-rw-r--r-- | builtin.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5,6 +5,7 @@ extern const char git_version_string[]; extern const char git_usage_string[]; +extern const char git_more_info_string[]; extern void list_common_cmds_help(void); extern void help_unknown_cmd(const char *cmd); |