projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5d21a4
)
help: remove extra blank line after "See 'git --help'" message
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>
help.c
patch
|
blob
|
history
diff --git
a/help.c
b/help.c
index 814a8cd02a4bcd80f68b406116b77ee8acbc3566..e5662d9014e758fee00b890e06ffc66cd4aa0291 100644
(file)
--- 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);
}