diff options
author | Taylor Blau <me@ttaylorr.com> | 2022-09-30 22:47:00 +0200 |
---|---|---|
committer | Taylor Blau <me@ttaylorr.com> | 2022-10-01 06:31:36 +0200 |
commit | 59f2f80280860e9796661876b4a2cd673448898d (patch) | |
tree | 813931ff6930a4d9f586fbe829ae504c1bb20ae6 /t/t5537-fetch-shallow.sh | |
parent | t5516: prepare for changing protocol.file.allow (diff) | |
download | git-59f2f80280860e9796661876b4a2cd673448898d.tar.xz git-59f2f80280860e9796661876b4a2cd673448898d.zip |
t5537: prepare for changing protocol.file.allow
Explicitly cloning over the "file://" protocol in t5537 in preparation
for merging a security release which will change the default value of
this configuration to be "user".
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Diffstat (limited to '')
-rwxr-xr-x | t/t5537-fetch-shallow.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t5537-fetch-shallow.sh b/t/t5537-fetch-shallow.sh index 92948de7a0..9573a2655e 100755 --- a/t/t5537-fetch-shallow.sh +++ b/t/t5537-fetch-shallow.sh @@ -162,6 +162,8 @@ test_expect_success 'fetch --update-shallow' ' ' test_expect_success 'fetch --update-shallow into a repo with submodules' ' + test_config_global protocol.file.allow always && + git init a-submodule && test_commit -C a-submodule foo && git init repo-with-sub && |