Merge tag 'l10n-2.31.0-rnd2' of git://github.com/git-l10n/git-po
[git/debian.git] / t / t5606-clone-options.sh
blob52e5789fb050d74db72d1ad62dab1cce5ba97793
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)
18 test_expect_success 'clone -o' '
20 git clone -o foo parent clone-o &&
21 git -C clone-o rev-parse --verify refs/remotes/foo/main
25 test_expect_success 'rejects invalid -o/--origin' '
27 test_must_fail git clone -o "bad...name" parent clone-bad-name 2>err &&
28 test_i18ngrep "'\''bad...name'\'' is not a valid remote name" err
32 test_expect_success 'disallows --bare with --origin' '
34 test_must_fail git clone -o foo --bare parent clone-bare-o 2>err &&
35 test_debug "cat err" &&
36 test_i18ngrep -e "--bare and --origin foo options are incompatible" err
40 test_expect_success 'disallows --bare with --separate-git-dir' '
42 test_must_fail git clone --bare --separate-git-dir dot-git-destiation parent clone-bare-sgd 2>err &&
43 test_debug "cat err" &&
44 test_i18ngrep -e "--bare and --separate-git-dir are incompatible" err
48 test_expect_success 'uses "origin" for default remote name' '
50 git clone parent clone-default-origin &&
51 git -C clone-default-origin rev-parse --verify refs/remotes/origin/main
55 test_expect_success 'prefers --template config over normal config' '
57 template="$TRASH_DIRECTORY/template-with-config" &&
58 mkdir "$template" &&
59 git config --file "$template/config" foo.bar from_template &&
60 test_config_global foo.bar from_global &&
61 git clone "--template=$template" parent clone-template-config &&
62 test "$(git -C clone-template-config config --local foo.bar)" = "from_template"
66 test_expect_success 'prefers -c config over --template config' '
68 template="$TRASH_DIRECTORY/template-with-ignored-config" &&
69 mkdir "$template" &&
70 git config --file "$template/config" foo.bar from_template &&
71 git clone "--template=$template" -c foo.bar=inline parent clone-template-inline-config &&
72 test "$(git -C clone-template-inline-config config --local foo.bar)" = "inline"
76 test_expect_success 'prefers config "clone.defaultRemoteName" over default' '
78 test_config_global clone.defaultRemoteName from_config &&
79 git clone parent clone-config-origin &&
80 git -C clone-config-origin rev-parse --verify refs/remotes/from_config/main
84 test_expect_success 'prefers --origin over -c config' '
86 git clone -c clone.defaultRemoteName=inline --origin from_option parent clone-o-and-inline-config &&
87 git -C clone-o-and-inline-config rev-parse --verify refs/remotes/from_option/main
91 test_expect_success 'redirected clone does not show progress' '
93 git clone "file://$(pwd)/parent" clone-redirected >out 2>err &&
94 ! grep % err &&
95 test_i18ngrep ! "Checking connectivity" err
99 test_expect_success 'redirected clone -v does show progress' '
101 git clone --progress "file://$(pwd)/parent" clone-redirected-progress \
102 >out 2>err &&
103 grep % err
107 test_expect_success 'chooses correct default initial branch name' '
108 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
109 git -c init.defaultBranch=foo init --bare empty &&
110 test_config -C empty lsrefs.unborn advertise &&
111 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
112 git -c init.defaultBranch=up clone empty whats-up &&
113 test refs/heads/foo = $(git -C whats-up symbolic-ref HEAD) &&
114 test refs/heads/foo = $(git -C whats-up config branch.foo.merge)
117 test_expect_success 'guesses initial branch name correctly' '
118 git init --initial-branch=guess initial-branch &&
119 test_commit -C initial-branch no-spoilers &&
120 git -C initial-branch branch abc guess &&
121 git clone initial-branch is-it &&
122 test refs/heads/guess = $(git -C is-it symbolic-ref HEAD) &&
124 git -c init.defaultBranch=none init --bare no-head &&
125 git -C initial-branch push ../no-head guess abc &&
126 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
127 git clone no-head is-it2 &&
128 test_must_fail git -C is-it2 symbolic-ref refs/remotes/origin/HEAD &&
129 git -C no-head update-ref --no-deref HEAD refs/heads/guess &&
130 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
131 git -c init.defaultBranch=guess clone no-head is-it3 &&
132 test refs/remotes/origin/guess = \
133 $(git -C is-it3 symbolic-ref refs/remotes/origin/HEAD)
136 test_done