From: Johannes Schindelin Date: Wed, 29 Jun 2016 14:14:50 +0000 (+0200) Subject: reset --hard: skip blank lines when reporting the commit subject X-Git-Tag: v2.9.3~60^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=054a5aee6f3e8e90d96f7b3f76f5f55752561c59;p=thirdparty%2Fgit.git 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 Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/builtin/reset.c b/builtin/reset.c index 4c08ddc1ca..34d8b236f1 100644 --- a/builtin/reset.c +++ b/builtin/reset.c @@ -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);