Allow using UNC path for git repository
[git/dscho.git] / t / t5702-clone-options.sh
blob02cb02472322e8fd6c31548d30950c937e301e5f
1 #!/bin/sh
3 test_description='basic clone options'
4 . ./test-lib.sh
6 test_expect_success 'setup' '
8 mkdir parent &&
9 (cd parent && git init &&
10 echo one >file && git add file &&
11 git commit -m one)
15 test_expect_success 'clone -o' '
17 git clone -o foo parent clone-o &&
18 (cd clone-o && git rev-parse --verify refs/remotes/foo/master)
22 test_expect_success 'redirected clone' '
24 git clone "file://$(pwd)/parent" clone-redirected >out 2>err &&
25 test ! -s err
28 test_expect_success 'redirected clone -v' '
30 git clone --progress "file://$(pwd)/parent" clone-redirected-progress \
31 >out 2>err &&
32 test -s err
36 test_done