git-add documentation: Fix shell quoting example
[git/dscho.git] / t / t5601-clone.sh
blobdc9d63dbf9d21482c881606152f10594f2fe124f
1 #!/bin/sh
3 test_description=clone
5 . ./test-lib.sh
7 test_expect_success setup '
9 rm -fr .git &&
10 test_create_repo src &&
12 cd src
13 >file
14 git add file
15 git commit -m initial
20 test_expect_success 'clone with excess parameters' '
22 test_must_fail git clone -n "file://$(pwd)/src" dst junk
26 test_done