]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5606-clone-options.sh
Sync with 2.36.3
[thirdparty/git.git] / t / t5606-clone-options.sh
CommitLineData
ecaa0cff
JK
1#!/bin/sh
2
3test_description='basic clone options'
95cf2c01 4GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
334afbc7
JS
5export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
6
ecaa0cff
JK
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 &&
4fe788b1
LL
14 git commit -m one) &&
15 git clone --depth=1 --no-local parent shallow-repo
ecaa0cff
JK
16
17'
18
48072e3d
MK
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
ecaa0cff
JK
31test_expect_success 'clone -o' '
32
33 git clone -o foo parent clone-o &&
95cf2c01 34 git -C clone-o rev-parse --verify refs/remotes/foo/main
349cff76
SB
35
36'
37
de9ed3ef
SB
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_i18ngrep "'\''bad...name'\'' is not a valid remote name" err
42
43'
44
349cff76
SB
45test_expect_success 'disallows --bare with --origin' '
46
47 test_must_fail git clone -o foo --bare parent clone-bare-o 2>err &&
48 test_debug "cat err" &&
246cac85 49 test_i18ngrep -e "options .--bare. and .--origin foo. cannot be used together" err
349cff76
SB
50
51'
52
53test_expect_success 'disallows --bare with --separate-git-dir' '
54
55 test_must_fail git clone --bare --separate-git-dir dot-git-destiation parent clone-bare-sgd 2>err &&
56 test_debug "cat err" &&
12909b6b 57 test_i18ngrep -e "options .--bare. and .--separate-git-dir. cannot be used together" err
349cff76
SB
58
59'
60
4fe788b1
LL
61test_expect_success 'reject cloning shallow repository' '
62 test_when_finished "rm -rf repo" &&
63 test_must_fail git clone --reject-shallow shallow-repo out 2>err &&
64 test_i18ngrep -e "source repository is shallow, reject to clone." err &&
65
66 git clone --no-reject-shallow shallow-repo repo
67'
68
69test_expect_success 'reject cloning non-local shallow repository' '
70 test_when_finished "rm -rf repo" &&
71 test_must_fail git clone --reject-shallow --no-local shallow-repo out 2>err &&
72 test_i18ngrep -e "source repository is shallow, reject to clone." err &&
73
74 git clone --no-reject-shallow --no-local shallow-repo repo
75'
76
77test_expect_success 'succeed cloning normal repository' '
78 test_when_finished "rm -rf chilad1 child2 child3 child4 " &&
79 git clone --reject-shallow parent child1 &&
80 git clone --reject-shallow --no-local parent child2 &&
81 git clone --no-reject-shallow parent child3 &&
82 git clone --no-reject-shallow --no-local parent child4
83'
84
349cff76
SB
85test_expect_success 'uses "origin" for default remote name' '
86
87 git clone parent clone-default-origin &&
95cf2c01 88 git -C clone-default-origin rev-parse --verify refs/remotes/origin/main
349cff76
SB
89
90'
91
92test_expect_success 'prefers --template config over normal config' '
93
94 template="$TRASH_DIRECTORY/template-with-config" &&
95 mkdir "$template" &&
96 git config --file "$template/config" foo.bar from_template &&
97 test_config_global foo.bar from_global &&
98 git clone "--template=$template" parent clone-template-config &&
99 test "$(git -C clone-template-config config --local foo.bar)" = "from_template"
100
101'
102
103test_expect_success 'prefers -c config over --template config' '
104
105 template="$TRASH_DIRECTORY/template-with-ignored-config" &&
106 mkdir "$template" &&
107 git config --file "$template/config" foo.bar from_template &&
108 git clone "--template=$template" -c foo.bar=inline parent clone-template-inline-config &&
109 test "$(git -C clone-template-inline-config config --local foo.bar)" = "inline"
ecaa0cff
JK
110
111'
112
de9ed3ef
SB
113test_expect_success 'prefers config "clone.defaultRemoteName" over default' '
114
115 test_config_global clone.defaultRemoteName from_config &&
116 git clone parent clone-config-origin &&
95cf2c01 117 git -C clone-config-origin rev-parse --verify refs/remotes/from_config/main
de9ed3ef
SB
118
119'
120
121test_expect_success 'prefers --origin over -c config' '
122
123 git clone -c clone.defaultRemoteName=inline --origin from_option parent clone-o-and-inline-config &&
95cf2c01 124 git -C clone-o-and-inline-config rev-parse --verify refs/remotes/from_option/main
de9ed3ef
SB
125
126'
127
68b939b2 128test_expect_success 'redirected clone does not show progress' '
21188b1e
MV
129
130 git clone "file://$(pwd)/parent" clone-redirected >out 2>err &&
2856cbf0
JK
131 ! grep % err &&
132 test_i18ngrep ! "Checking connectivity" err
21188b1e
MV
133
134'
68b939b2
JK
135
136test_expect_success 'redirected clone -v does show progress' '
21188b1e 137
5a518ad4
TRC
138 git clone --progress "file://$(pwd)/parent" clone-redirected-progress \
139 >out 2>err &&
68b939b2 140 grep % err
21188b1e
MV
141
142'
143
75555676 144test_expect_success 'clone does not segfault with --bare and core.bare=false' '
145 test_config_global core.bare false &&
146 git clone --bare parent clone-bare &&
147 echo true >expect &&
148 git -C clone-bare rev-parse --is-bare-repository >actual &&
149 test_cmp expect actual
150'
151
0cc1b475 152test_expect_success 'chooses correct default initial branch name' '
4f37d457
JT
153 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
154 git -c init.defaultBranch=foo init --bare empty &&
155 test_config -C empty lsrefs.unborn advertise &&
704fed9e 156 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
5f70859c 157 git -c init.defaultBranch=up -c protocol.version=2 clone empty whats-up &&
4f37d457
JT
158 test refs/heads/foo = $(git -C whats-up symbolic-ref HEAD) &&
159 test refs/heads/foo = $(git -C whats-up config branch.foo.merge)
0cc1b475
JS
160'
161
162test_expect_success 'guesses initial branch name correctly' '
163 git init --initial-branch=guess initial-branch &&
164 test_commit -C initial-branch no-spoilers &&
165 git -C initial-branch branch abc guess &&
166 git clone initial-branch is-it &&
a471214b
JS
167 test refs/heads/guess = $(git -C is-it symbolic-ref HEAD) &&
168
169 git -c init.defaultBranch=none init --bare no-head &&
170 git -C initial-branch push ../no-head guess abc &&
704fed9e 171 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
a471214b
JS
172 git clone no-head is-it2 &&
173 test_must_fail git -C is-it2 symbolic-ref refs/remotes/origin/HEAD &&
174 git -C no-head update-ref --no-deref HEAD refs/heads/guess &&
704fed9e 175 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
a471214b
JS
176 git -c init.defaultBranch=guess clone no-head is-it3 &&
177 test refs/remotes/origin/guess = \
178 $(git -C is-it3 symbolic-ref refs/remotes/origin/HEAD)
0cc1b475
JS
179'
180
ecaa0cff 181test_done