summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorLibravatar Johannes Schindelin <johannes.schindelin@gmx.de>2016-06-29 16:14:50 +0200
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-06-29 15:03:36 -0700
commit054a5aee6f3e8e90d96f7b3f76f5f55752561c59 (patch)
tree8bd12b3a439f6135c4d4168d9a7897360263f6d6 /builtin
parentsequencer: use skip_blank_lines() to find the commit subject (diff)
downloadtgif-054a5aee6f3e8e90d96f7b3f76f5f55752561c59.tar.xz
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>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/reset.c2
1 files changed, 1 insertions, 1 deletions
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);