diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-10-27 08:26:41 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-27 08:26:41 +0200 |
commit | a238917ba48c44de8a00e3aee7898d9beb5afcd8 (patch) | |
tree | e776a52db7e3ab4f766c64396864b38b10b12624 /help.c | |
parent | On error, do not list all commands, but point to --help option (diff) | |
download | git-a238917ba48c44de8a00e3aee7898d9beb5afcd8.tar.xz git-a238917ba48c44de8a00e3aee7898d9beb5afcd8.zip |
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 <gitster@pobox.com>
Diffstat (limited to 'help.c')
-rw-r--r-- | help.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |