builtin-commit: Add newline when showing which commit was created

The function log_tree_commit() does not break the line, so we have to
do it ourselves.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Johannes Schindelin 2007-11-11 17:36:52 +00:00 коммит произвёл Junio C Hamano
Родитель f9568530c9
Коммит 129fa60636
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -494,6 +494,7 @@ static void print_summary(const char *prefix, const unsigned char *sha1)
printf("Created %scommit ", initial_commit ? "initial " : "");
log_tree_commit(&rev, commit);
printf("\n");
}
int git_commit_config(const char *k, const char *v)