]> git.ipfire.org Git - thirdparty/git.git/blob - t/t5702-clone-options.sh
Documentation: user-manual: "git commit -a" doesn't motivate .gitignore
[thirdparty/git.git] / t / t5702-clone-options.sh
1 #!/bin/sh
2
3 test_description='basic clone options'
4 . ./test-lib.sh
5
6 test_expect_success 'setup' '
7
8 mkdir parent &&
9 (cd parent && git init &&
10 echo one >file && git add file &&
11 git commit -m one)
12
13 '
14
15 test_expect_success 'clone -o' '
16
17 git clone -o foo parent clone-o &&
18 (cd clone-o && git rev-parse --verify refs/remotes/foo/master)
19
20 '
21
22 test_done