From: Denton Liu Date: Thu, 8 Oct 2020 06:44:40 +0000 (-0700) Subject: contrib/git-resurrect.sh: use hash-agnostic OID pattern X-Git-Tag: v2.30.0-rc0~144^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e37eae0c1e13cb418947383f7c803d9463bfa3d7;p=thirdparty%2Fgit.git contrib/git-resurrect.sh: use hash-agnostic OID pattern Since Git now supports hashes other than SHA-1, the hash length isn't guaranteed to be 40 characters. Replace $_x40 with a hash-agnostic OID pattern. Signed-off-by: Denton Liu Signed-off-by: Junio C Hamano --- diff --git a/contrib/git-resurrect.sh b/contrib/git-resurrect.sh index 57a77c03f9..d843df3afd 100755 --- a/contrib/git-resurrect.sh +++ b/contrib/git-resurrect.sh @@ -37,19 +37,18 @@ search_reflog_merges () { ) } -_x40="[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]" -_x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40" +oid_pattern=$(git hash-object --stdin