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 <philipoakley@iee.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Philip Oakley committed May 15, 2019 at 23:47 UTC e55f36b8b3e1248ebdc4cddfd9b08f2e86b638fb
1 file changed +2 -1
git.c
+2 -1
@@ -33,7 +33,8 @@ const char git_usage_string[] =
33 const char git_more_info_string[] =
34 N_("'git help -a' and 'git help -g' list available subcommands and some\n"
35 "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.");
38
39 static int use_pager = -1;
40