Git fork
1#!/bin/sh
2
3test_description='basic clone options'
4GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
5export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
6
7. ./test-lib.sh
8
9test_expect_success 'setup' '
10
11 mkdir parent &&
12 (cd parent && git init &&
13 echo one >file && git add file &&
14 git commit -m one) &&
15 git clone --depth=1 --no-local parent shallow-repo
16
17'
18
19test_expect_success 'submodule.stickyRecursiveClone flag manipulates submodule.recurse value' '
20
21 test_config_global submodule.stickyRecursiveClone true &&
22 git clone --recurse-submodules parent clone_recurse_true &&
23 test_cmp_config -C clone_recurse_true true submodule.recurse &&
24
25 test_config_global submodule.stickyRecursiveClone false &&
26 git clone --recurse-submodules parent clone_recurse_false &&
27 test_expect_code 1 git -C clone_recurse_false config --get submodule.recurse
28
29'
30
31test_expect_success 'clone -o' '
32
33 git clone -o foo parent clone-o &&
34 git -C clone-o rev-parse --verify refs/remotes/foo/main
35
36'
37
38test_expect_success 'rejects invalid -o/--origin' '
39
40 test_must_fail git clone -o "bad...name" parent clone-bad-name 2>err &&
41 test_grep "'\''bad...name'\'' is not a valid remote name" err
42
43'
44
45test_expect_success 'clone --bare -o' '
46
47 git clone -o foo --bare parent clone-bare-o &&
48 (cd parent && pwd) >expect &&
49 git -C clone-bare-o config remote.foo.url >actual &&
50 test_cmp expect actual
51
52'
53
54test_expect_success 'disallows --bare with --separate-git-dir' '
55
56 test_must_fail git clone --bare --separate-git-dir dot-git-destiation parent clone-bare-sgd 2>err &&
57 test_debug "cat err" &&
58 test_grep -e "options .--bare. and .--separate-git-dir. cannot be used together" err
59
60'
61
62test_expect_success 'disallows --bundle-uri with shallow options' '
63 for option in --depth=1 --shallow-since=01-01-2000 --shallow-exclude=HEAD
64 do
65 test_must_fail git clone --bundle-uri=bundle $option from to 2>err &&
66 grep "bundle-uri.* cannot be used together" err || return 1
67 done
68'
69
70test_expect_success 'reject cloning shallow repository' '
71 test_when_finished "rm -rf repo" &&
72 test_must_fail git clone --reject-shallow shallow-repo out 2>err &&
73 test_grep -e "source repository is shallow, reject to clone." err &&
74
75 git clone --no-reject-shallow shallow-repo repo
76'
77
78test_expect_success 'reject cloning non-local shallow repository' '
79 test_when_finished "rm -rf repo" &&
80 test_must_fail git clone --reject-shallow --no-local shallow-repo out 2>err &&
81 test_grep -e "source repository is shallow, reject to clone." err &&
82
83 git clone --no-reject-shallow --no-local shallow-repo repo
84'
85
86test_expect_success 'succeed cloning normal repository' '
87 test_when_finished "rm -rf chilad1 child2 child3 child4 " &&
88 git clone --reject-shallow parent child1 &&
89 git clone --reject-shallow --no-local parent child2 &&
90 git clone --no-reject-shallow parent child3 &&
91 git clone --no-reject-shallow --no-local parent child4
92'
93
94test_expect_success 'uses "origin" for default remote name' '
95
96 git clone parent clone-default-origin &&
97 git -C clone-default-origin rev-parse --verify refs/remotes/origin/main
98
99'
100
101test_expect_success 'prefers --template config over normal config' '
102
103 template="$TRASH_DIRECTORY/template-with-config" &&
104 mkdir "$template" &&
105 git config --file "$template/config" foo.bar from_template &&
106 test_config_global foo.bar from_global &&
107 git clone "--template=$template" parent clone-template-config &&
108 test "$(git -C clone-template-config config --local foo.bar)" = "from_template"
109
110'
111
112test_expect_success 'prefers -c config over --template config' '
113
114 template="$TRASH_DIRECTORY/template-with-ignored-config" &&
115 mkdir "$template" &&
116 git config --file "$template/config" foo.bar from_template &&
117 git clone "--template=$template" -c foo.bar=inline parent clone-template-inline-config &&
118 test "$(git -C clone-template-inline-config config --local foo.bar)" = "inline"
119
120'
121
122test_expect_success 'ignore --template config for core.bare' '
123
124 template="$TRASH_DIRECTORY/template-with-bare-config" &&
125 mkdir "$template" &&
126 git config --file "$template/config" core.bare true &&
127 git clone "--template=$template" parent clone-bare-config &&
128 test "$(git -C clone-bare-config config --local core.bare)" = "false" &&
129 test_path_is_missing clone-bare-config/HEAD
130'
131
132test_expect_success 'prefers config "clone.defaultRemoteName" over default' '
133
134 test_config_global clone.defaultRemoteName from_config &&
135 git clone parent clone-config-origin &&
136 git -C clone-config-origin rev-parse --verify refs/remotes/from_config/main
137
138'
139
140test_expect_success 'prefers --origin over -c config' '
141
142 git clone -c clone.defaultRemoteName=inline --origin from_option parent clone-o-and-inline-config &&
143 git -C clone-o-and-inline-config rev-parse --verify refs/remotes/from_option/main
144
145'
146
147test_expect_success 'redirected clone does not show progress' '
148
149 git clone "file://$(pwd)/parent" clone-redirected >out 2>err &&
150 ! grep % err &&
151 test_grep ! "Checking connectivity" err
152
153'
154
155test_expect_success 'redirected clone -v does show progress' '
156
157 git clone --progress "file://$(pwd)/parent" clone-redirected-progress \
158 >out 2>err &&
159 grep % err
160
161'
162
163test_expect_success 'clone does not segfault with --bare and core.bare=false' '
164 test_config_global core.bare false &&
165 git clone --bare parent clone-bare &&
166 echo true >expect &&
167 git -C clone-bare rev-parse --is-bare-repository >actual &&
168 test_cmp expect actual
169'
170
171test_expect_success 'chooses correct default initial branch name' '
172 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
173 git -c init.defaultBranch=foo init --bare empty &&
174 test_config -C empty lsrefs.unborn advertise &&
175 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
176 git -c init.defaultBranch=up -c protocol.version=2 clone empty whats-up &&
177 test refs/heads/foo = $(git -C whats-up symbolic-ref HEAD) &&
178 test refs/heads/foo = $(git -C whats-up config branch.foo.merge)
179'
180
181test_expect_success 'guesses initial branch name correctly' '
182 git init --initial-branch=guess initial-branch &&
183 test_commit -C initial-branch no-spoilers &&
184 git -C initial-branch branch abc guess &&
185 git clone initial-branch is-it &&
186 test refs/heads/guess = $(git -C is-it symbolic-ref HEAD) &&
187
188 git -c init.defaultBranch=none init --bare no-head &&
189 git -C initial-branch push ../no-head guess abc &&
190 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
191 git clone no-head is-it2 &&
192 test_must_fail git -C is-it2 symbolic-ref refs/remotes/origin/HEAD &&
193 git -C no-head update-ref --no-deref HEAD refs/heads/guess &&
194 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
195 git -c init.defaultBranch=guess clone no-head is-it3 &&
196 test refs/remotes/origin/guess = \
197 $(git -C is-it3 symbolic-ref refs/remotes/origin/HEAD)
198'
199
200test_done