mirror of
https://github.com/git/git.git
synced 2024-11-25 10:54:00 +08:00
reset --hard: skip blank lines when reporting the commit subject
When there are blank lines at the beginning of a commit message, the pretty printing machinery already skips them when showing a commit subject (or the complete commit message). We shall henceforth do the same when reporting the commit subject after the user called git reset --hard <commit> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
88ef402f9c
commit
054a5aee6f
@ -103,7 +103,7 @@ static void print_new_head_line(struct commit *commit)
|
||||
if (body) {
|
||||
const char *eol;
|
||||
size_t len;
|
||||
body += 2;
|
||||
body = skip_blank_lines(body + 2);
|
||||
eol = strchr(body, '\n');
|
||||
len = eol ? eol - body : strlen(body);
|
||||
printf(" %.*s\n", (int) len, body);
|
||||
|
Loading…
Reference in New Issue
Block a user