From: Junio C Hamano Date: Sat, 27 Oct 2007 06:26:41 +0000 (-0700) Subject: help: remove extra blank line after "See 'git --help'" message X-Git-Tag: v1.5.4-rc0~319^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a238917ba48c44de8a00e3aee7898d9beb5afcd8;p=git.git help: remove extra blank line after "See 'git --help'" message The double LF were there only because we gave a list of common commands. WIth the list gone, there is no reason to have the extra blank line. Signed-off-by: Junio C Hamano --- diff --git a/help.c b/help.c index 814a8cd02..e5662d901 100644 --- a/help.c +++ b/help.c @@ -185,7 +185,7 @@ static void show_man_page(const char *git_cmd) void help_unknown_cmd(const char *cmd) { - fprintf(stderr, "git: '%s' is not a git-command. See --help\n\n", cmd); + fprintf(stderr, "git: '%s' is not a git-command. See 'git --help'.\n", cmd); exit(1); }