git-patch-id: do not trip over "no newline" markers
Currently, patch-id trips over our very own diff extension for marking the absence of newline at EOF. Fix it. (Ignore it, it's whitespace.) Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
f2b5e7af10
commit
2485eab55c
@ -73,6 +73,8 @@ int get_one_patchid(unsigned char *next_sha1, git_SHA_CTX *ctx)
|
||||
p += 7;
|
||||
else if (!memcmp(line, "From ", 5))
|
||||
p += 5;
|
||||
else if (!memcmp(line, "\\ ", 2) && 12 < strlen(line))
|
||||
continue;
|
||||
|
||||
if (!get_sha1_hex(p, next_sha1)) {
|
||||
found_next = 1;
|
||||
|
Reference in New Issue
Block a user