summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2019-04-22 11:14:45 +0900
committerLibravatar Junio C Hamano <gitster@pobox.com>2019-04-22 11:14:46 +0900
commit078b254deb62d86c469c87ba4200c5a46fcb3a95 (patch)
tree445a5f8556bba93f72180bc867167e9f3f6af17e /t
parentMerge branch 'cb/doco-mono' (diff)
parentconfig: correct '**' matching in includeIf patterns (diff)
downloadtgif-078b254deb62d86c469c87ba4200c5a46fcb3a95.tar.xz
Merge branch 'nd/include-if-wildmatch'
A buglet in configuration parser has been fixed. * nd/include-if-wildmatch: config: correct '**' matching in includeIf patterns
Diffstat (limited to 't')
-rwxr-xr-xt/t1305-config-include.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t1305-config-include.sh b/t/t1305-config-include.sh
index 635918505d..579a86b7f8 100755
--- a/t/t1305-config-include.sh
+++ b/t/t1305-config-include.sh
@@ -229,6 +229,19 @@ test_expect_success 'conditional include, early config reading' '
)
'
+test_expect_success 'conditional include with /**/' '
+ REPO=foo/bar/repo &&
+ git init $REPO &&
+ cat >>$REPO/.git/config <<-\EOF &&
+ [includeIf "gitdir:**/foo/**/bar/**"]
+ path=bar7
+ EOF
+ echo "[test]seven=7" >$REPO/.git/bar7 &&
+ echo 7 >expect &&
+ git -C $REPO config test.seven >actual &&
+ test_cmp expect actual
+'
+
test_expect_success SYMLINKS 'conditional include, set up symlinked $HOME' '
mkdir real-home &&
ln -s real-home home &&