Start the 2.46 cycle
[git/gitster.git] / t / t5606-clone-options.sh
blobe93e0d0cc397a323bae99e9f92ee5d02cb026f2b
1 #!/bin/sh
3 test_description='basic clone options'
4 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
5 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7 TEST_PASSES_SANITIZE_LEAK=true
8 . ./test-lib.sh
10 test_expect_success 'setup' '
12 mkdir parent &&
13 (cd parent && git init &&
14 echo one >file && git add file &&
15 git commit -m one) &&
16 git clone --depth=1 --no-local parent shallow-repo
20 test_expect_success 'submodule.stickyRecursiveClone flag manipulates submodule.recurse value' '
22 test_config_global submodule.stickyRecursiveClone true &&
23 git clone --recurse-submodules parent clone_recurse_true &&
24 test_cmp_config -C clone_recurse_true true submodule.recurse &&
26 test_config_global submodule.stickyRecursiveClone false &&
27 git clone --recurse-submodules parent clone_recurse_false &&
28 test_expect_code 1 git -C clone_recurse_false config --get submodule.recurse
32 test_expect_success 'clone -o' '
34 git clone -o foo parent clone-o &&
35 git -C clone-o rev-parse --verify refs/remotes/foo/main
39 test_expect_success 'rejects invalid -o/--origin' '
41 test_must_fail git clone -o "bad...name" parent clone-bad-name 2>err &&
42 test_grep "'\''bad...name'\'' is not a valid remote name" err
46 test_expect_success 'clone --bare -o' '
48 git clone -o foo --bare parent clone-bare-o &&
49 (cd parent && pwd) >expect &&
50 git -C clone-bare-o config remote.foo.url >actual &&
51 test_cmp expect actual
55 test_expect_success 'disallows --bare with --separate-git-dir' '
57 test_must_fail git clone --bare --separate-git-dir dot-git-destiation parent clone-bare-sgd 2>err &&
58 test_debug "cat err" &&
59 test_grep -e "options .--bare. and .--separate-git-dir. cannot be used together" err
63 test_expect_success 'disallows --bundle-uri with shallow options' '
64 for option in --depth=1 --shallow-since=01-01-2000 --shallow-exclude=HEAD
66 test_must_fail git clone --bundle-uri=bundle $option from to 2>err &&
67 grep "bundle-uri.* cannot be used together" err || return 1
68 done
71 test_expect_success 'reject cloning shallow repository' '
72 test_when_finished "rm -rf repo" &&
73 test_must_fail git clone --reject-shallow shallow-repo out 2>err &&
74 test_grep -e "source repository is shallow, reject to clone." err &&
76 git clone --no-reject-shallow shallow-repo repo
79 test_expect_success 'reject cloning non-local shallow repository' '
80 test_when_finished "rm -rf repo" &&
81 test_must_fail git clone --reject-shallow --no-local shallow-repo out 2>err &&
82 test_grep -e "source repository is shallow, reject to clone." err &&
84 git clone --no-reject-shallow --no-local shallow-repo repo
87 test_expect_success 'succeed cloning normal repository' '
88 test_when_finished "rm -rf chilad1 child2 child3 child4 " &&
89 git clone --reject-shallow parent child1 &&
90 git clone --reject-shallow --no-local parent child2 &&
91 git clone --no-reject-shallow parent child3 &&
92 git clone --no-reject-shallow --no-local parent child4
95 test_expect_success 'uses "origin" for default remote name' '
97 git clone parent clone-default-origin &&
98 git -C clone-default-origin rev-parse --verify refs/remotes/origin/main
102 test_expect_success 'prefers --template config over normal config' '
104 template="$TRASH_DIRECTORY/template-with-config" &&
105 mkdir "$template" &&
106 git config --file "$template/config" foo.bar from_template &&
107 test_config_global foo.bar from_global &&
108 git clone "--template=$template" parent clone-template-config &&
109 test "$(git -C clone-template-config config --local foo.bar)" = "from_template"
113 test_expect_success 'prefers -c config over --template config' '
115 template="$TRASH_DIRECTORY/template-with-ignored-config" &&
116 mkdir "$template" &&
117 git config --file "$template/config" foo.bar from_template &&
118 git clone "--template=$template" -c foo.bar=inline parent clone-template-inline-config &&
119 test "$(git -C clone-template-inline-config config --local foo.bar)" = "inline"
123 test_expect_success 'ignore --template config for core.bare' '
125 template="$TRASH_DIRECTORY/template-with-bare-config" &&
126 mkdir "$template" &&
127 git config --file "$template/config" core.bare true &&
128 git clone "--template=$template" parent clone-bare-config &&
129 test "$(git -C clone-bare-config config --local core.bare)" = "false" &&
130 test_path_is_missing clone-bare-config/HEAD
133 test_expect_success 'prefers config "clone.defaultRemoteName" over default' '
135 test_config_global clone.defaultRemoteName from_config &&
136 git clone parent clone-config-origin &&
137 git -C clone-config-origin rev-parse --verify refs/remotes/from_config/main
141 test_expect_success 'prefers --origin over -c config' '
143 git clone -c clone.defaultRemoteName=inline --origin from_option parent clone-o-and-inline-config &&
144 git -C clone-o-and-inline-config rev-parse --verify refs/remotes/from_option/main
148 test_expect_success 'redirected clone does not show progress' '
150 git clone "file://$(pwd)/parent" clone-redirected >out 2>err &&
151 ! grep % err &&
152 test_grep ! "Checking connectivity" err
156 test_expect_success 'redirected clone -v does show progress' '
158 git clone --progress "file://$(pwd)/parent" clone-redirected-progress \
159 >out 2>err &&
160 grep % err
164 test_expect_success 'clone does not segfault with --bare and core.bare=false' '
165 test_config_global core.bare false &&
166 git clone --bare parent clone-bare &&
167 echo true >expect &&
168 git -C clone-bare rev-parse --is-bare-repository >actual &&
169 test_cmp expect actual
172 test_expect_success 'chooses correct default initial branch name' '
173 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
174 git -c init.defaultBranch=foo init --bare empty &&
175 test_config -C empty lsrefs.unborn advertise &&
176 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
177 git -c init.defaultBranch=up -c protocol.version=2 clone empty whats-up &&
178 test refs/heads/foo = $(git -C whats-up symbolic-ref HEAD) &&
179 test refs/heads/foo = $(git -C whats-up config branch.foo.merge)
182 test_expect_success 'guesses initial branch name correctly' '
183 git init --initial-branch=guess initial-branch &&
184 test_commit -C initial-branch no-spoilers &&
185 git -C initial-branch branch abc guess &&
186 git clone initial-branch is-it &&
187 test refs/heads/guess = $(git -C is-it symbolic-ref HEAD) &&
189 git -c init.defaultBranch=none init --bare no-head &&
190 git -C initial-branch push ../no-head guess abc &&
191 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
192 git clone no-head is-it2 &&
193 test_must_fail git -C is-it2 symbolic-ref refs/remotes/origin/HEAD &&
194 git -C no-head update-ref --no-deref HEAD refs/heads/guess &&
195 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
196 git -c init.defaultBranch=guess clone no-head is-it3 &&
197 test refs/remotes/origin/guess = \
198 $(git -C is-it3 symbolic-ref refs/remotes/origin/HEAD)
201 test_done