aboutsummaryrefslogtreecommitdiffstats
path: root/t/t5604-clone-reference.sh
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2023-02-06 09:25:08 +0100
committerJohannes Schindelin <johannes.schindelin@gmx.de>2023-02-06 09:25:08 +0100
commitaeb93d7da2bee3fac5e858b8eb89fa480d8b692e (patch)
treeb6d76d86800522a4a83a20f8a6bfb3bc0e42daf6 /t/t5604-clone-reference.sh
parent012e0d76dc5b1a994ca68290f9994c5f135902a1 (diff)
parent0bbcf951943eefbbfee2a7e08b7150bef5b60562 (diff)
downloadgit-aeb93d7da2bee3fac5e858b8eb89fa480d8b692e.tar.gz
Sync with 2.31.7
* maint-2.31: Git 2.31.7 Git 2.30.8 apply: fix writing behind newly created symbolic links dir-iterator: prevent top-level symlinks without FOLLOW_SYMLINKS clone: delay picking a transport until after get_repo_path() t5619: demonstrate clone_local() with ambiguous transport
Diffstat (limited to 't/t5604-clone-reference.sh')
-rwxr-xr-xt/t5604-clone-reference.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/t/t5604-clone-reference.sh b/t/t5604-clone-reference.sh
index 6fb7a6e7a0..574d8c4147 100755
--- a/t/t5604-clone-reference.sh
+++ b/t/t5604-clone-reference.sh
@@ -344,4 +344,20 @@ test_expect_success SYMLINKS 'clone repo with symlinked or unknown files at obje
test_must_be_empty T--shared.objects-symlinks.raw
'
+test_expect_success SYMLINKS 'clone repo with symlinked objects directory' '
+ test_when_finished "rm -fr sensitive malicious" &&
+
+ mkdir -p sensitive &&
+ echo "secret" >sensitive/file &&
+
+ git init malicious &&
+ rm -fr malicious/.git/objects &&
+ ln -s "$(pwd)/sensitive" ./malicious/.git/objects &&
+
+ test_must_fail git clone --local malicious clone 2>err &&
+
+ test_path_is_missing clone &&
+ grep "failed to start iterator over" err
+'
+
test_done