From b7d9681974e61959f10c7b2c1063b7781c5b904e Mon Sep 17 00:00:00 2001 From: Teemu Likonen Date: Fri, 6 Jun 2008 00:15:36 +0300 Subject: 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 Signed-off-by: Junio C Hamano --- help.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'help.c') diff --git a/help.c b/help.c index d89d43796f..8aff94c64a 100644 --- a/help.c +++ b/help.c @@ -649,12 +649,14 @@ int cmd_help(int argc, const char **argv, const char *prefix) if (show_all) { printf("usage: %s\n\n", git_usage_string); list_commands(); + printf("%s\n", git_more_info_string); return 0; } if (!argv[0]) { printf("usage: %s\n\n", git_usage_string); list_common_cmds_help(); + printf("\n%s\n", git_more_info_string); return 0; } -- cgit v1.2.1