t4014: support Git version strings with spaces

git --version reports its version with the prefix "git version ".
Remove precisely this string instead of everything up to and including
the rightmost space to avoid butchering version strings that contain
spaces.  This helps Apple's release of Git, which reports its version
like this: "git version 2.50.1 (Apple Git-155)".

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
René Scharfe
2025-12-13 10:40:42 +01:00
committed by Junio C Hamano
parent 9a2fb147f2
commit 007b8994d4

View File

@@ -980,7 +980,7 @@ test_expect_success 'format-patch --ignore-if-in-upstream HEAD' '
test_expect_success 'get git version' '
git_version=$(git --version) &&
git_version=${git_version##* }
git_version=${git_version#git version }
'
signature() {