Skip to content

Commit e55f36b

Browse files
Philip Oakleygitster
authored andcommitted
git.c: show usage for accessing the git(1) help page
It is not immediately obvious how to use the `git help` system to show the git(1) page, with its overview and its background and coordinating material, such as environment variables. Let's simply list it as the last few words of the last usage line. Signed-off-by: Philip Oakley <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent aeb582a commit e55f36b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

git.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ const char git_usage_string[] =
3333
const char git_more_info_string[] =
3434
N_("'git help -a' and 'git help -g' list available subcommands and some\n"
3535
"concept guides. See 'git help <command>' or 'git help <concept>'\n"
36-
"to read about a specific subcommand or concept.");
36+
"to read about a specific subcommand or concept.\n"
37+
"See 'git help git' for an overview of the system.");
3738

3839
static int use_pager = -1;
3940

0 commit comments

Comments
 (0)