summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2016-06-29 16:14:50 +0200
committerJunio C Hamano <gitster@pobox.com>2016-06-29 15:03:36 -0700
commit054a5aee6f3e8e90d96f7b3f76f5f55752561c59 (patch)
tree8bd12b3a439f6135c4d4168d9a7897360263f6d6
parent88ef402f9c18dafee5c8b222200f8f984b17a73e (diff)
downloadgit-js/find-commit-subject-ignore-leading-blanks.tar.gz
reset --hard: skip blank lines when reporting the commit subjectjs/find-commit-subject-ignore-leading-blanks
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>
-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);