summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b5d21a4)
raw | patch | inline | side by side (parent: b5d21a4)
author | Junio C Hamano <gitster@pobox.com> | |
Sat, 27 Oct 2007 06:26:41 +0000 (23:26 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 27 Oct 2007 06:26:41 +0000 (23:26 -0700) |
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>
commands. WIth the list gone, there is no reason to have the
extra blank line.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
help.c | patch | blob | history |
index 814a8cd02a4bcd80f68b406116b77ee8acbc3566..e5662d9014e758fee00b890e06ffc66cd4aa0291 100644 (file)
--- a/help.c
+++ b/help.c
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);
}