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