From 8d3cbd27d46bdf42d632de0a2e7f048855941128 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Fri, 23 Jun 2006 17:36:21 +0200 Subject: [PATCH] patch-id: take "commit" prefix as well as "diff-tree" prefix Some time ago we changed git-log in a massive way, and one consequence is that the keyword changed. Adjust patch-id for that. [jc: as Linus suggests, allowing both old and new prefix.] Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- patch-id.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/patch-id.c b/patch-id.c index edbc4aa3e8..3b4c80f764 100644 --- a/patch-id.c +++ b/patch-id.c @@ -42,6 +42,8 @@ static void generate_id_list(void) if (!memcmp(line, "diff-tree ", 10)) p += 10; + else if (!memcmp(line, "commit ", 7)) + p += 7; if (!get_sha1_hex(p, n)) { flush_current_id(patchlen, sha1, &ctx); -- 2.11.4.GIT