clone --bare: Add ".git" suffix to the directory name to clone into
[alt-git.git] / t / t5601-clone.sh
blob57173b4c50ec5f30198c9bf8bd8d03edd17bb235
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 (1)' '
22 rm -fr dst &&
23 test_must_fail git clone -n src dst junk
27 test_expect_success 'clone with excess parameters (2)' '
29 rm -fr dst &&
30 test_must_fail git clone -n "file://$(pwd)/src" dst junk
34 test_expect_success 'clone does not keep pack' '
36 rm -fr dst &&
37 git clone -n "file://$(pwd)/src" dst &&
38 ! test -f dst/file &&
39 ! (echo dst/.git/objects/pack/pack-* | grep "\.keep")
43 test_expect_success 'clone checks out files' '
45 rm -fr dst &&
46 git clone src dst &&
47 test -f dst/file
51 test_expect_success 'clone respects GIT_WORK_TREE' '
53 GIT_WORK_TREE=worktree git clone src bare &&
54 test -f bare/config &&
55 test -f worktree/file
59 test_expect_success 'clone creates intermediate directories' '
61 git clone src long/path/to/dst &&
62 test -f long/path/to/dst/file
66 test_expect_success 'clone creates intermediate directories for bare repo' '
68 git clone --bare src long/path/to/bare/dst &&
69 test -f long/path/to/bare/dst/config
73 test_expect_success 'clone --mirror' '
75 git clone --mirror src mirror &&
76 test -f mirror/HEAD &&
77 test ! -f mirror/file &&
78 FETCH="$(cd mirror && git config remote.origin.fetch)" &&
79 test "+refs/*:refs/*" = "$FETCH" &&
80 MIRROR="$(cd mirror && git config --bool remote.origin.mirror)" &&
81 test "$MIRROR" = true
85 test_expect_success 'clone --bare names the local repository <name>.git' '
87 git clone --bare src &&
88 test -d src.git
92 test_done