* ja/shorthelp:
  help: remove extra blank line after "See 'git --help'" message
  On error, do not list all commands, but point to --help option
This commit is contained in:
Junio C Hamano 2007-10-26 23:26:49 -07:00
Родитель d633f702a0 a238917ba4
Коммит 85b0045505
1 изменённых файлов: 1 добавлений и 2 удалений

3
help.c
Просмотреть файл

@ -185,8 +185,7 @@ static void show_man_page(const char *git_cmd)
void help_unknown_cmd(const char *cmd)
{
printf("git: '%s' is not a git-command\n\n", cmd);
list_common_cmds_help();
fprintf(stderr, "git: '%s' is not a git-command. See 'git --help'.\n", cmd);
exit(1);
}