From 054a5aee6f3e8e90d96f7b3f76f5f55752561c59 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 29 Jun 2016 16:14:50 +0200 Subject: 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 4c08ddc..34d8b23 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); -- cgit v0.10.2-6-g49f6