зеркало из https://github.com/microsoft/git.git
18 строки
341 B
Bash
18 строки
341 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
test_description="Test bundle-uri with protocol v2 and 'git://' transport"
|
||
|
|
||
|
TEST_NO_CREATE_REPO=1
|
||
|
|
||
|
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
||
|
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
||
|
|
||
|
. ./test-lib.sh
|
||
|
|
||
|
# Test protocol v2 with 'git://' transport
|
||
|
#
|
||
|
BUNDLE_URI_PROTOCOL=git
|
||
|
. "$TEST_DIRECTORY"/lib-bundle-uri-protocol.sh
|
||
|
|
||
|
test_done
|