21 lines
494 B
Bash
21 lines
494 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
test_description='test disabling of git-over-ssh in clone/fetch'
|
||
|
. ./test-lib.sh
|
||
|
. "$TEST_DIRECTORY/lib-proto-disable.sh"
|
||
|
|
||
|
setup_ssh_wrapper
|
||
|
|
||
|
test_expect_success 'setup repository to clone' '
|
||
|
test_commit one &&
|
||
|
mkdir remote &&
|
||
|
git init --bare remote/repo.git &&
|
||
|
git push remote/repo.git HEAD
|
||
|
'
|
||
|
|
||
|
test_proto "host:path" ssh "remote:repo.git"
|
||
|
test_proto "ssh://" ssh "ssh://remote/$PWD/remote/repo.git"
|
||
|
test_proto "git+ssh://" ssh "git+ssh://remote/$PWD/remote/repo.git"
|
||
|
|
||
|
test_done
|