Git 2.45
[git/gitster.git] / t / t5507-remote-environment.sh
blobc6a6957c5001e9480cbd26ccba5fd26c54126ece
1 #!/bin/sh
3 test_description='check environment showed to remote side of transports'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
8 test_expect_success 'set up "remote" push situation' '
9 test_commit one &&
10 git config push.default current &&
11 git init remote
14 test_expect_success 'set up fake ssh' '
15 GIT_SSH_COMMAND="f() {
16 cd \"\$TRASH_DIRECTORY\" &&
17 eval \"\$2\"
18 }; f" &&
19 export GIT_SSH_COMMAND &&
20 export TRASH_DIRECTORY
23 # due to receive.denyCurrentBranch=true
24 test_expect_success 'confirm default push fails' '
25 test_must_fail git push remote
28 test_expect_success 'config does not travel over same-machine push' '
29 test_must_fail git -c receive.denyCurrentBranch=false push remote
32 test_expect_success 'config does not travel over ssh push' '
33 test_must_fail git -c receive.denyCurrentBranch=false push host:remote
36 test_done