commit -C: skip blank lines at the beginning of the message
Consistent with the pretty-printing machinery, we skip leading blank lines (if any) of existing commit messages. While Git itself only produces commit objects with a single empty line between commit header and commit message, it is legal to have more than one blank line (i.e. lines containing only white space, or no characters) at the beginning of the commit message, and the pretty-printing code already handles that. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Johannes Schindelin committed
Jun 29, 2016 at 16:14 UTC
84e213a30a1d4a3835e23b2f3d6217eb74ea55f7
1 file changed
+1
-1
builtin/commit.c
+1
-1
@@ -712,7 +712,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
712
char *buffer;
713
buffer = strstr(use_message_buffer, "\n\n");
714
if (buffer)
715
- strbuf_addstr(&sb, buffer + 2);
715
+ strbuf_addstr(&sb, skip_blank_lines(buffer + 2));
716
hook_arg1 = "commit";
717
hook_arg2 = use_message;
718
} else if (fixup_message) {