From: Steffen Prohaska Date: Sun, 11 May 2008 16:16:41 +0000 (+0200) Subject: t0050: Set core.ignorecase case to activate case insensitivity X-Git-Tag: v1.5.6-rc0~23^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b4a299d87ca7a1d39c699ee2af28305e57f3b0ae;p=git.git t0050: Set core.ignorecase case to activate case insensitivity Case insensitive file handling is only active when core.ignorecase = true. Hence, we need to set it to give the tests in t0050 a chance to succeed. Setting core.ignorecase explicitly allows to test some aspects of case handling even on case sensitive file systems. Signed-off-by: Steffen Prohaska Signed-off-by: Junio C Hamano --- diff --git a/t/t0050-filesystem.sh b/t/t0050-filesystem.sh index 66d3647bd..399b45df1 100755 --- a/t/t0050-filesystem.sh +++ b/t/t0050-filesystem.sh @@ -50,6 +50,7 @@ fi test_expect_success "setup case tests" ' + git config core.ignorecase true && touch camelcase && git add camelcase && git commit -m "initial" &&