Merge branch 'main' of github.com:git/git
[alt-git.git] / t / t5606-clone-options.sh
blobf6bb02ab947c1de61484e95e0f4a6228a16da103
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-lib.sh
9 test_expect_success 'setup' '
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
19 test_expect_success 'submodule.stickyRecursiveClone flag manipulates submodule.recurse value' '
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 &&
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
31 test_expect_success 'clone -o' '
33 git clone -o foo parent clone-o &&
34 git -C clone-o rev-parse --verify refs/remotes/foo/main
38 test_expect_success 'rejects invalid -o/--origin' '
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
45 test_expect_success 'disallows --bare with --origin' '
47 test_must_fail git clone -o foo --bare parent clone-bare-o 2>err &&
48 test_debug "cat err" &&
49 test_i18ngrep -e "options .--bare. and .--origin foo. cannot be used together" err
53 test_expect_success 'disallows --bare with --separate-git-dir' '
55 test_must_fail git clone --bare --separate-git-dir dot-git-destiation parent clone-bare-sgd 2>err &&
56 test_debug "cat err" &&
57 test_i18ngrep -e "options .--bare. and .--separate-git-dir. cannot be used together" err
61 test_expect_success 'disallows --bundle-uri with shallow options' '
62 for option in --depth=1 --shallow-since=01-01-2000 --shallow-exclude=HEAD
64 test_must_fail git clone --bundle-uri=bundle $option from to 2>err &&
65 grep "bundle-uri is incompatible" err || return 1
66 done
69 test_expect_success 'reject cloning shallow repository' '
70 test_when_finished "rm -rf repo" &&
71 test_must_fail git clone --reject-shallow shallow-repo out 2>err &&
72 test_i18ngrep -e "source repository is shallow, reject to clone." err &&
74 git clone --no-reject-shallow shallow-repo repo
77 test_expect_success 'reject cloning non-local shallow repository' '
78 test_when_finished "rm -rf repo" &&
79 test_must_fail git clone --reject-shallow --no-local shallow-repo out 2>err &&
80 test_i18ngrep -e "source repository is shallow, reject to clone." err &&
82 git clone --no-reject-shallow --no-local shallow-repo repo
85 test_expect_success 'succeed cloning normal repository' '
86 test_when_finished "rm -rf chilad1 child2 child3 child4 " &&
87 git clone --reject-shallow parent child1 &&
88 git clone --reject-shallow --no-local parent child2 &&
89 git clone --no-reject-shallow parent child3 &&
90 git clone --no-reject-shallow --no-local parent child4
93 test_expect_success 'uses "origin" for default remote name' '
95 git clone parent clone-default-origin &&
96 git -C clone-default-origin rev-parse --verify refs/remotes/origin/main
100 test_expect_success 'prefers --template config over normal config' '
102 template="$TRASH_DIRECTORY/template-with-config" &&
103 mkdir "$template" &&
104 git config --file "$template/config" foo.bar from_template &&
105 test_config_global foo.bar from_global &&
106 git clone "--template=$template" parent clone-template-config &&
107 test "$(git -C clone-template-config config --local foo.bar)" = "from_template"
111 test_expect_success 'prefers -c config over --template config' '
113 template="$TRASH_DIRECTORY/template-with-ignored-config" &&
114 mkdir "$template" &&
115 git config --file "$template/config" foo.bar from_template &&
116 git clone "--template=$template" -c foo.bar=inline parent clone-template-inline-config &&
117 test "$(git -C clone-template-inline-config config --local foo.bar)" = "inline"
121 test_expect_success 'prefers config "clone.defaultRemoteName" over default' '
123 test_config_global clone.defaultRemoteName from_config &&
124 git clone parent clone-config-origin &&
125 git -C clone-config-origin rev-parse --verify refs/remotes/from_config/main
129 test_expect_success 'prefers --origin over -c config' '
131 git clone -c clone.defaultRemoteName=inline --origin from_option parent clone-o-and-inline-config &&
132 git -C clone-o-and-inline-config rev-parse --verify refs/remotes/from_option/main
136 test_expect_success 'redirected clone does not show progress' '
138 git clone "file://$(pwd)/parent" clone-redirected >out 2>err &&
139 ! grep % err &&
140 test_i18ngrep ! "Checking connectivity" err
144 test_expect_success 'redirected clone -v does show progress' '
146 git clone --progress "file://$(pwd)/parent" clone-redirected-progress \
147 >out 2>err &&
148 grep % err
152 test_expect_success 'clone does not segfault with --bare and core.bare=false' '
153 test_config_global core.bare false &&
154 git clone --bare parent clone-bare &&
155 echo true >expect &&
156 git -C clone-bare rev-parse --is-bare-repository >actual &&
157 test_cmp expect actual
160 test_expect_success 'chooses correct default initial branch name' '
161 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
162 git -c init.defaultBranch=foo init --bare empty &&
163 test_config -C empty lsrefs.unborn advertise &&
164 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
165 git -c init.defaultBranch=up -c protocol.version=2 clone empty whats-up &&
166 test refs/heads/foo = $(git -C whats-up symbolic-ref HEAD) &&
167 test refs/heads/foo = $(git -C whats-up config branch.foo.merge)
170 test_expect_success 'guesses initial branch name correctly' '
171 git init --initial-branch=guess initial-branch &&
172 test_commit -C initial-branch no-spoilers &&
173 git -C initial-branch branch abc guess &&
174 git clone initial-branch is-it &&
175 test refs/heads/guess = $(git -C is-it symbolic-ref HEAD) &&
177 git -c init.defaultBranch=none init --bare no-head &&
178 git -C initial-branch push ../no-head guess abc &&
179 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
180 git clone no-head is-it2 &&
181 test_must_fail git -C is-it2 symbolic-ref refs/remotes/origin/HEAD &&
182 git -C no-head update-ref --no-deref HEAD refs/heads/guess &&
183 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
184 git -c init.defaultBranch=guess clone no-head is-it3 &&
185 test refs/remotes/origin/guess = \
186 $(git -C is-it3 symbolic-ref refs/remotes/origin/HEAD)
189 test_done