2007-12-19 16:43:50 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='basic clone options'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
|
|
|
|
mkdir parent &&
|
|
|
|
(cd parent && git init &&
|
|
|
|
echo one >file && git add file &&
|
|
|
|
git commit -m one)
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'clone -o' '
|
|
|
|
|
|
|
|
git clone -o foo parent clone-o &&
|
|
|
|
(cd clone-o && git rev-parse --verify refs/remotes/foo/master)
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2008-10-09 01:40:32 +02:00
|
|
|
test_expect_success 'redirected clone' '
|
|
|
|
|
|
|
|
git clone "file://$(pwd)/parent" clone-redirected >out 2>err &&
|
|
|
|
test ! -s err
|
|
|
|
|
|
|
|
'
|
|
|
|
test_expect_success 'redirected clone -v' '
|
|
|
|
|
2009-12-25 18:12:06 +01:00
|
|
|
git clone --progress "file://$(pwd)/parent" clone-redirected-progress \
|
|
|
|
>out 2>err &&
|
2008-10-09 01:40:32 +02:00
|
|
|
test -s err
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2007-12-19 16:43:50 +01:00
|
|
|
test_done
|