diff options
Diffstat (limited to 'builtin-commit.c')
| -rw-r--r-- | builtin-commit.c | 10 | 
1 files changed, 4 insertions, 6 deletions
diff --git a/builtin-commit.c b/builtin-commit.c index f4c73442cf..7b7a51a168 100644 --- a/builtin-commit.c +++ b/builtin-commit.c @@ -1136,13 +1136,11 @@ static void print_summary(const char *prefix, const unsigned char *sha1)  		initial_commit ? " (root-commit)" : "");  	if (!log_tree_commit(&rev, commit)) { -		struct pretty_print_context ctx = {0}; -		struct strbuf buf = STRBUF_INIT; -		ctx.date_mode = DATE_NORMAL; -		format_commit_message(commit, format.buf + 7, &buf, &ctx); -		printf("%s\n", buf.buf); -		strbuf_release(&buf); +		rev.always_show_header = 1; +		rev.use_terminator = 1; +		log_tree_commit(&rev, commit);  	} +  	strbuf_release(&format);  }  | 
