Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='git init' |
| 4 | |
Ævar Arnfjörð Bjarmason | c150064 | 2021-10-12 15:56:37 +0200 | [diff] [blame] | 5 | TEST_PASSES_SANITIZE_LEAK=true |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 6 | . ./test-lib.sh |
| 7 | |
| 8 | check_config () { |
Shaoxuan Yuan | d4fe066 | 2022-01-21 18:21:09 +0800 | [diff] [blame] | 9 | if test_path_is_dir "$1" && |
| 10 | test_path_is_file "$1/config" && test_path_is_dir "$1/refs" |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 11 | then |
| 12 | : happy |
| 13 | else |
| 14 | echo "expected a directory $1, a file $1/config and $1/refs" |
| 15 | return 1 |
| 16 | fi |
Michael Haggerty | 1f32ecf | 2014-11-18 14:50:24 +0100 | [diff] [blame] | 17 | |
| 18 | if test_have_prereq POSIXPERM && test -x "$1/config" |
| 19 | then |
| 20 | echo "$1/config is executable?" |
| 21 | return 1 |
| 22 | fi |
| 23 | |
Jeff King | 3cc6a6f | 2014-03-20 19:15:24 -0400 | [diff] [blame] | 24 | bare=$(cd "$1" && git config --bool core.bare) |
| 25 | worktree=$(cd "$1" && git config core.worktree) || |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 26 | worktree=unset |
| 27 | |
| 28 | test "$bare" = "$2" && test "$worktree" = "$3" || { |
| 29 | echo "expected bare=$2 worktree=$3" |
| 30 | echo " got bare=$bare worktree=$worktree" |
| 31 | return 1 |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | test_expect_success 'plain' ' |
Jeff King | 410c342 | 2014-03-20 19:23:06 -0400 | [diff] [blame] | 36 | git init plain && |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 37 | check_config plain/.git false unset |
| 38 | ' |
| 39 | |
Jonathan Nieder | 4ad8332 | 2010-11-26 22:32:41 +0700 | [diff] [blame] | 40 | test_expect_success 'plain nested in bare' ' |
| 41 | ( |
Jonathan Nieder | 4ad8332 | 2010-11-26 22:32:41 +0700 | [diff] [blame] | 42 | git init --bare bare-ancestor.git && |
| 43 | cd bare-ancestor.git && |
| 44 | mkdir plain-nested && |
| 45 | cd plain-nested && |
| 46 | git init |
| 47 | ) && |
| 48 | check_config bare-ancestor.git/plain-nested/.git false unset |
| 49 | ' |
| 50 | |
| 51 | test_expect_success 'plain through aliased command, outside any git repo' ' |
| 52 | ( |
Jonathan Nieder | 4ad8332 | 2010-11-26 22:32:41 +0700 | [diff] [blame] | 53 | HOME=$(pwd)/alias-config && |
| 54 | export HOME && |
| 55 | mkdir alias-config && |
| 56 | echo "[alias] aliasedinit = init" >alias-config/.gitconfig && |
| 57 | |
| 58 | GIT_CEILING_DIRECTORIES=$(pwd) && |
| 59 | export GIT_CEILING_DIRECTORIES && |
| 60 | |
| 61 | mkdir plain-aliased && |
| 62 | cd plain-aliased && |
| 63 | git aliasedinit |
| 64 | ) && |
| 65 | check_config plain-aliased/.git false unset |
| 66 | ' |
| 67 | |
Nguyễn Thái Ngọc Duy | c056261 | 2014-06-08 16:37:10 +0700 | [diff] [blame] | 68 | test_expect_success 'plain nested through aliased command' ' |
Jonathan Nieder | 4ad8332 | 2010-11-26 22:32:41 +0700 | [diff] [blame] | 69 | ( |
Jonathan Nieder | 4ad8332 | 2010-11-26 22:32:41 +0700 | [diff] [blame] | 70 | git init plain-ancestor-aliased && |
| 71 | cd plain-ancestor-aliased && |
| 72 | echo "[alias] aliasedinit = init" >>.git/config && |
| 73 | mkdir plain-nested && |
| 74 | cd plain-nested && |
| 75 | git aliasedinit |
| 76 | ) && |
| 77 | check_config plain-ancestor-aliased/plain-nested/.git false unset |
| 78 | ' |
| 79 | |
Nguyễn Thái Ngọc Duy | c056261 | 2014-06-08 16:37:10 +0700 | [diff] [blame] | 80 | test_expect_success 'plain nested in bare through aliased command' ' |
Jonathan Nieder | 4ad8332 | 2010-11-26 22:32:41 +0700 | [diff] [blame] | 81 | ( |
Jonathan Nieder | 4ad8332 | 2010-11-26 22:32:41 +0700 | [diff] [blame] | 82 | git init --bare bare-ancestor-aliased.git && |
| 83 | cd bare-ancestor-aliased.git && |
| 84 | echo "[alias] aliasedinit = init" >>config && |
| 85 | mkdir plain-nested && |
| 86 | cd plain-nested && |
| 87 | git aliasedinit |
| 88 | ) && |
| 89 | check_config bare-ancestor-aliased.git/plain-nested/.git false unset |
| 90 | ' |
| 91 | |
Nguyễn Thái Ngọc Duy | 57ea712 | 2015-12-20 14:50:19 +0700 | [diff] [blame] | 92 | test_expect_success 'No extra GIT_* on alias scripts' ' |
Johannes Sixt | f3858f8 | 2016-03-03 07:55:17 +0100 | [diff] [blame] | 93 | write_script script <<-\EOF && |
| 94 | env | |
| 95 | sed -n \ |
| 96 | -e "/^GIT_PREFIX=/d" \ |
| 97 | -e "/^GIT_TEXTDOMAINDIR=/d" \ |
SZEDER Gábor | e4b75d6 | 2019-05-19 16:43:08 +0200 | [diff] [blame] | 98 | -e "/^GIT_TRACE2_PARENT/d" \ |
Johannes Sixt | f3858f8 | 2016-03-03 07:55:17 +0100 | [diff] [blame] | 99 | -e "/^GIT_/s/=.*//p" | |
| 100 | sort |
Nguyễn Thái Ngọc Duy | 57ea712 | 2015-12-20 14:50:19 +0700 | [diff] [blame] | 101 | EOF |
Johannes Sixt | f3858f8 | 2016-03-03 07:55:17 +0100 | [diff] [blame] | 102 | ./script >expected && |
Nguyễn Thái Ngọc Duy | 57ea712 | 2015-12-20 14:50:19 +0700 | [diff] [blame] | 103 | git config alias.script \!./script && |
Johannes Sixt | f3858f8 | 2016-03-03 07:55:17 +0100 | [diff] [blame] | 104 | ( mkdir sub && cd sub && git script >../actual ) && |
Nguyễn Thái Ngọc Duy | 57ea712 | 2015-12-20 14:50:19 +0700 | [diff] [blame] | 105 | test_cmp expected actual |
| 106 | ' |
| 107 | |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 108 | test_expect_success 'plain with GIT_WORK_TREE' ' |
Jeff King | 0981140 | 2014-03-20 19:19:50 -0400 | [diff] [blame] | 109 | mkdir plain-wt && |
| 110 | test_must_fail env GIT_WORK_TREE="$(pwd)/plain-wt" git init plain-wt |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 111 | ' |
| 112 | |
| 113 | test_expect_success 'plain bare' ' |
Jeff King | 410c342 | 2014-03-20 19:23:06 -0400 | [diff] [blame] | 114 | git --bare init plain-bare-1 && |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 115 | check_config plain-bare-1 true unset |
| 116 | ' |
| 117 | |
| 118 | test_expect_success 'plain bare with GIT_WORK_TREE' ' |
Jeff King | 0981140 | 2014-03-20 19:19:50 -0400 | [diff] [blame] | 119 | mkdir plain-bare-2 && |
| 120 | test_must_fail \ |
| 121 | env GIT_WORK_TREE="$(pwd)/plain-bare-2" \ |
| 122 | git --bare init plain-bare-2 |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 123 | ' |
| 124 | |
| 125 | test_expect_success 'GIT_DIR bare' ' |
Jeff King | 99e1c73 | 2014-03-20 19:21:25 -0400 | [diff] [blame] | 126 | mkdir git-dir-bare.git && |
| 127 | GIT_DIR=git-dir-bare.git git init && |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 128 | check_config git-dir-bare.git true unset |
| 129 | ' |
| 130 | |
Luciano Rocha | 74d3b23 | 2008-05-28 19:53:57 +0100 | [diff] [blame] | 131 | test_expect_success 'init --bare' ' |
Jeff King | 410c342 | 2014-03-20 19:23:06 -0400 | [diff] [blame] | 132 | git init --bare init-bare.git && |
Miklos Vajna | b613827 | 2008-07-11 02:12:03 +0200 | [diff] [blame] | 133 | check_config init-bare.git true unset |
Luciano Rocha | 74d3b23 | 2008-05-28 19:53:57 +0100 | [diff] [blame] | 134 | ' |
| 135 | |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 136 | test_expect_success 'GIT_DIR non-bare' ' |
| 137 | |
| 138 | ( |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 139 | mkdir non-bare && |
| 140 | cd non-bare && |
| 141 | GIT_DIR=.git git init |
| 142 | ) && |
| 143 | check_config non-bare/.git false unset |
| 144 | ' |
| 145 | |
| 146 | test_expect_success 'GIT_DIR & GIT_WORK_TREE (1)' ' |
| 147 | |
| 148 | ( |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 149 | mkdir git-dir-wt-1.git && |
| 150 | GIT_WORK_TREE=$(pwd) GIT_DIR=git-dir-wt-1.git git init |
| 151 | ) && |
| 152 | check_config git-dir-wt-1.git false "$(pwd)" |
| 153 | ' |
| 154 | |
| 155 | test_expect_success 'GIT_DIR & GIT_WORK_TREE (2)' ' |
Jeff King | 0981140 | 2014-03-20 19:19:50 -0400 | [diff] [blame] | 156 | mkdir git-dir-wt-2.git && |
| 157 | test_must_fail env \ |
| 158 | GIT_WORK_TREE="$(pwd)" \ |
| 159 | GIT_DIR=git-dir-wt-2.git \ |
| 160 | git --bare init |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 161 | ' |
| 162 | |
Junio C Hamano | 127df8c | 2011-04-12 15:57:08 -0700 | [diff] [blame] | 163 | test_expect_success 'reinit' ' |
Johannes Schindelin | 5cc8f37 | 2008-03-24 16:14:52 +0100 | [diff] [blame] | 164 | |
| 165 | ( |
Johannes Schindelin | 5cc8f37 | 2008-03-24 16:14:52 +0100 | [diff] [blame] | 166 | mkdir again && |
| 167 | cd again && |
Johannes Schindelin | 675704c | 2020-12-11 11:36:57 +0000 | [diff] [blame] | 168 | git -c init.defaultBranch=initial init >out1 2>err1 && |
Johannes Schindelin | 5cc8f37 | 2008-03-24 16:14:52 +0100 | [diff] [blame] | 169 | git init >out2 2>err2 |
| 170 | ) && |
Junio C Hamano | 6789275 | 2023-10-31 14:23:30 +0900 | [diff] [blame] | 171 | test_grep "Initialized empty" again/out1 && |
| 172 | test_grep "Reinitialized existing" again/out2 && |
SZEDER Gábor | 1c5e94f | 2018-08-19 23:57:25 +0200 | [diff] [blame] | 173 | test_must_be_empty again/err1 && |
| 174 | test_must_be_empty again/err2 |
Johannes Schindelin | 5cc8f37 | 2008-03-24 16:14:52 +0100 | [diff] [blame] | 175 | ' |
| 176 | |
Jeff King | 172035f | 2008-07-28 02:02:04 -0400 | [diff] [blame] | 177 | test_expect_success 'init with --template' ' |
| 178 | mkdir template-source && |
| 179 | echo content >template-source/file && |
Nguyễn Thái Ngọc Duy | e1df7fe | 2019-05-10 17:46:57 +0700 | [diff] [blame] | 180 | git init --template=template-source template-custom && |
Jeff King | 172035f | 2008-07-28 02:02:04 -0400 | [diff] [blame] | 181 | test_cmp template-source/file template-custom/.git/file |
| 182 | ' |
| 183 | |
| 184 | test_expect_success 'init with --template (blank)' ' |
Jeff King | 410c342 | 2014-03-20 19:23:06 -0400 | [diff] [blame] | 185 | git init template-plain && |
Jeff King | 633734d | 2014-03-20 19:17:35 -0400 | [diff] [blame] | 186 | test_path_is_file template-plain/.git/info/exclude && |
Jeff King | 410c342 | 2014-03-20 19:23:06 -0400 | [diff] [blame] | 187 | git init --template= template-blank && |
Jeff King | 633734d | 2014-03-20 19:17:35 -0400 | [diff] [blame] | 188 | test_path_is_missing template-blank/.git/info/exclude |
Jeff King | 172035f | 2008-07-28 02:02:04 -0400 | [diff] [blame] | 189 | ' |
| 190 | |
Matheus Tavares | a185dd5 | 2021-05-25 00:41:01 -0300 | [diff] [blame] | 191 | init_no_templatedir_env () { |
| 192 | ( |
| 193 | sane_unset GIT_TEMPLATE_DIR && |
| 194 | NO_SET_GIT_TEMPLATE_DIR=t && |
| 195 | export NO_SET_GIT_TEMPLATE_DIR && |
| 196 | git init "$1" |
| 197 | ) |
| 198 | } |
| 199 | |
Steven Drake | a94d305 | 2010-02-26 17:00:21 +1300 | [diff] [blame] | 200 | test_expect_success 'init with init.templatedir set' ' |
| 201 | mkdir templatedir-source && |
| 202 | echo Content >templatedir-source/file && |
Jeff King | 2a47241 | 2014-03-20 19:18:12 -0400 | [diff] [blame] | 203 | test_config_global init.templatedir "${HOME}/templatedir-source" && |
Matheus Tavares | a185dd5 | 2021-05-25 00:41:01 -0300 | [diff] [blame] | 204 | |
| 205 | init_no_templatedir_env templatedir-set && |
Steven Drake | a94d305 | 2010-02-26 17:00:21 +1300 | [diff] [blame] | 206 | test_cmp templatedir-source/file templatedir-set/.git/file |
| 207 | ' |
| 208 | |
Matheus Tavares | a185dd5 | 2021-05-25 00:41:01 -0300 | [diff] [blame] | 209 | test_expect_success 'init with init.templatedir using ~ expansion' ' |
| 210 | mkdir -p templatedir-source && |
| 211 | echo Content >templatedir-source/file && |
| 212 | test_config_global init.templatedir "~/templatedir-source" && |
| 213 | |
| 214 | init_no_templatedir_env templatedir-expansion && |
| 215 | test_cmp templatedir-source/file templatedir-expansion/.git/file |
| 216 | ' |
| 217 | |
Deskin Miller | 0a2c7ee | 2008-10-07 01:37:48 -0400 | [diff] [blame] | 218 | test_expect_success 'init --bare/--shared overrides system/global config' ' |
Jeff King | 2a47241 | 2014-03-20 19:18:12 -0400 | [diff] [blame] | 219 | test_config_global core.bare false && |
| 220 | test_config_global core.sharedRepository 0640 && |
Jeff King | 410c342 | 2014-03-20 19:23:06 -0400 | [diff] [blame] | 221 | git init --bare --shared=0666 init-bare-shared-override && |
Deskin Miller | 0a2c7ee | 2008-10-07 01:37:48 -0400 | [diff] [blame] | 222 | check_config init-bare-shared-override true unset && |
| 223 | test x0666 = \ |
Elia Pinto | 88619b3 | 2014-04-28 05:57:24 -0700 | [diff] [blame] | 224 | x$(git config -f init-bare-shared-override/config core.sharedRepository) |
Deskin Miller | 0a2c7ee | 2008-10-07 01:37:48 -0400 | [diff] [blame] | 225 | ' |
| 226 | |
| 227 | test_expect_success 'init honors global core.sharedRepository' ' |
Jeff King | 2a47241 | 2014-03-20 19:18:12 -0400 | [diff] [blame] | 228 | test_config_global core.sharedRepository 0666 && |
Jeff King | 410c342 | 2014-03-20 19:23:06 -0400 | [diff] [blame] | 229 | git init shared-honor-global && |
Deskin Miller | 0a2c7ee | 2008-10-07 01:37:48 -0400 | [diff] [blame] | 230 | test x0666 = \ |
Elia Pinto | 88619b3 | 2014-04-28 05:57:24 -0700 | [diff] [blame] | 231 | x$(git config -f shared-honor-global/.git/config core.sharedRepository) |
Deskin Miller | 0a2c7ee | 2008-10-07 01:37:48 -0400 | [diff] [blame] | 232 | ' |
| 233 | |
Jeff King | 9c28390 | 2015-10-04 23:46:04 -0400 | [diff] [blame] | 234 | test_expect_success 'init allows insanely long --template' ' |
| 235 | git init --template=$(printf "x%09999dx" 1) test |
Frank Lichtenheld | 32d1776 | 2009-04-18 16:14:02 +0200 | [diff] [blame] | 236 | ' |
| 237 | |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 238 | test_expect_success 'init creates a new directory' ' |
| 239 | rm -fr newdir && |
Jeff King | 99e1c73 | 2014-03-20 19:21:25 -0400 | [diff] [blame] | 240 | git init newdir && |
| 241 | test_path_is_dir newdir/.git/refs |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 242 | ' |
| 243 | |
| 244 | test_expect_success 'init creates a new bare directory' ' |
| 245 | rm -fr newdir && |
Jeff King | 99e1c73 | 2014-03-20 19:21:25 -0400 | [diff] [blame] | 246 | git init --bare newdir && |
| 247 | test_path_is_dir newdir/refs |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 248 | ' |
| 249 | |
| 250 | test_expect_success 'init recreates a directory' ' |
| 251 | rm -fr newdir && |
Jeff King | 99e1c73 | 2014-03-20 19:21:25 -0400 | [diff] [blame] | 252 | mkdir newdir && |
| 253 | git init newdir && |
| 254 | test_path_is_dir newdir/.git/refs |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 255 | ' |
| 256 | |
| 257 | test_expect_success 'init recreates a new bare directory' ' |
| 258 | rm -fr newdir && |
Jeff King | 99e1c73 | 2014-03-20 19:21:25 -0400 | [diff] [blame] | 259 | mkdir newdir && |
| 260 | git init --bare newdir && |
| 261 | test_path_is_dir newdir/refs |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 262 | ' |
| 263 | |
| 264 | test_expect_success 'init creates a new deep directory' ' |
| 265 | rm -fr newdir && |
Johannes Sixt | d82e75e | 2009-08-09 18:02:55 +0200 | [diff] [blame] | 266 | git init newdir/a/b/c && |
Jeff King | 633734d | 2014-03-20 19:17:35 -0400 | [diff] [blame] | 267 | test_path_is_dir newdir/a/b/c/.git/refs |
Johannes Sixt | d82e75e | 2009-08-09 18:02:55 +0200 | [diff] [blame] | 268 | ' |
| 269 | |
| 270 | test_expect_success POSIXPERM 'init creates a new deep directory (umask vs. shared)' ' |
| 271 | rm -fr newdir && |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 272 | ( |
| 273 | # Leading directories should honor umask while |
| 274 | # the repository itself should follow "shared" |
Matt McCutchen | d549d21 | 2017-01-28 15:25:48 -0500 | [diff] [blame] | 275 | mkdir newdir && |
| 276 | # Remove a default ACL if possible. |
| 277 | (setfacl -k newdir 2>/dev/null || true) && |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 278 | umask 002 && |
| 279 | git init --bare --shared=0660 newdir/a/b/c && |
Jeff King | 633734d | 2014-03-20 19:17:35 -0400 | [diff] [blame] | 280 | test_path_is_dir newdir/a/b/c/refs && |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 281 | ls -ld newdir/a newdir/a/b > lsab.out && |
Johannes Sixt | 7d53a07 | 2009-08-09 17:38:04 +0200 | [diff] [blame] | 282 | ! grep -v "^drwxrw[sx]r-x" lsab.out && |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 283 | ls -ld newdir/a/b/c > lsc.out && |
| 284 | ! grep -v "^drwxrw[sx]---" lsc.out |
| 285 | ) |
| 286 | ' |
| 287 | |
| 288 | test_expect_success 'init notices EEXIST (1)' ' |
| 289 | rm -fr newdir && |
Jeff King | 99e1c73 | 2014-03-20 19:21:25 -0400 | [diff] [blame] | 290 | >newdir && |
| 291 | test_must_fail git init newdir && |
| 292 | test_path_is_file newdir |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 293 | ' |
| 294 | |
| 295 | test_expect_success 'init notices EEXIST (2)' ' |
| 296 | rm -fr newdir && |
Jeff King | 99e1c73 | 2014-03-20 19:21:25 -0400 | [diff] [blame] | 297 | mkdir newdir && |
| 298 | >newdir/a && |
| 299 | test_must_fail git init newdir/a/b && |
| 300 | test_path_is_file newdir/a |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 301 | ' |
| 302 | |
Ævar Arnfjörð Bjarmason | c91cfd1 | 2010-08-06 22:09:09 +0000 | [diff] [blame] | 303 | test_expect_success POSIXPERM,SANITY 'init notices EPERM' ' |
Junio C Hamano | 0377142 | 2018-06-15 11:13:39 -0700 | [diff] [blame] | 304 | test_when_finished "chmod +w newdir" && |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 305 | rm -fr newdir && |
Jeff King | 99e1c73 | 2014-03-20 19:21:25 -0400 | [diff] [blame] | 306 | mkdir newdir && |
| 307 | chmod -w newdir && |
| 308 | test_must_fail git init newdir/a/b |
Nanako Shiraishi | 53d4888 | 2009-07-25 06:59:28 +0900 | [diff] [blame] | 309 | ' |
| 310 | |
Jeff King | 87a074d | 2010-05-10 05:42:06 -0400 | [diff] [blame] | 311 | test_expect_success 'init creates a new bare directory with global --bare' ' |
| 312 | rm -rf newdir && |
| 313 | git --bare init newdir && |
Jeff King | 633734d | 2014-03-20 19:17:35 -0400 | [diff] [blame] | 314 | test_path_is_dir newdir/refs |
Jeff King | 87a074d | 2010-05-10 05:42:06 -0400 | [diff] [blame] | 315 | ' |
| 316 | |
| 317 | test_expect_success 'init prefers command line to GIT_DIR' ' |
| 318 | rm -rf newdir && |
| 319 | mkdir otherdir && |
| 320 | GIT_DIR=otherdir git --bare init newdir && |
Jeff King | 633734d | 2014-03-20 19:17:35 -0400 | [diff] [blame] | 321 | test_path_is_dir newdir/refs && |
| 322 | test_path_is_missing otherdir/refs |
Jeff King | 87a074d | 2010-05-10 05:42:06 -0400 | [diff] [blame] | 323 | ' |
| 324 | |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 325 | test_expect_success 'init with separate gitdir' ' |
| 326 | rm -rf newdir && |
| 327 | git init --separate-git-dir realgitdir newdir && |
Johannes Schindelin | ed33bd8 | 2019-06-24 19:40:05 +0200 | [diff] [blame] | 328 | newdir_git="$(cat newdir/.git)" && |
| 329 | test_cmp_fspath "$(pwd)/realgitdir" "${newdir_git#gitdir: }" && |
Jeff King | 633734d | 2014-03-20 19:17:35 -0400 | [diff] [blame] | 330 | test_path_is_dir realgitdir/refs |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 331 | ' |
| 332 | |
Eric Sunshine | ccf236a | 2020-08-09 18:53:16 -0400 | [diff] [blame] | 333 | test_expect_success 'explicit bare & --separate-git-dir incompatible' ' |
| 334 | test_must_fail git init --bare --separate-git-dir goop.git bare.git 2>err && |
Junio C Hamano | 6789275 | 2023-10-31 14:23:30 +0900 | [diff] [blame] | 335 | test_grep "cannot be used together" err |
Eric Sunshine | ccf236a | 2020-08-09 18:53:16 -0400 | [diff] [blame] | 336 | ' |
| 337 | |
| 338 | test_expect_success 'implicit bare & --separate-git-dir incompatible' ' |
| 339 | test_when_finished "rm -rf bare.git" && |
| 340 | mkdir -p bare.git && |
| 341 | test_must_fail env GIT_DIR=. \ |
| 342 | git -C bare.git init --separate-git-dir goop.git 2>err && |
Junio C Hamano | 6789275 | 2023-10-31 14:23:30 +0900 | [diff] [blame] | 343 | test_grep "incompatible" err |
Eric Sunshine | ccf236a | 2020-08-09 18:53:16 -0400 | [diff] [blame] | 344 | ' |
| 345 | |
Eric Sunshine | 59d876c | 2020-08-31 02:58:00 -0400 | [diff] [blame] | 346 | test_expect_success 'bare & --separate-git-dir incompatible within worktree' ' |
| 347 | test_when_finished "rm -rf bare.git linkwt seprepo" && |
| 348 | test_commit gumby && |
| 349 | git clone --bare . bare.git && |
| 350 | git -C bare.git worktree add --detach ../linkwt && |
| 351 | test_must_fail git -C linkwt init --separate-git-dir seprepo 2>err && |
Junio C Hamano | 6789275 | 2023-10-31 14:23:30 +0900 | [diff] [blame] | 352 | test_grep "incompatible" err |
Eric Sunshine | 59d876c | 2020-08-31 02:58:00 -0400 | [diff] [blame] | 353 | ' |
| 354 | |
René Scharfe | bed6787 | 2017-08-07 13:04:18 +0200 | [diff] [blame] | 355 | test_lazy_prereq GETCWD_IGNORES_PERMS ' |
| 356 | base=GETCWD_TEST_BASE_DIR && |
| 357 | mkdir -p $base/dir && |
| 358 | chmod 100 $base || |
SZEDER Gábor | 165293a | 2018-11-19 14:13:26 +0100 | [diff] [blame] | 359 | BUG "cannot prepare $base" |
René Scharfe | bed6787 | 2017-08-07 13:04:18 +0200 | [diff] [blame] | 360 | |
Ævar Arnfjörð Bjarmason | 482e148 | 2021-07-30 18:18:14 +0200 | [diff] [blame] | 361 | ( |
| 362 | cd $base/dir && |
| 363 | test-tool getcwd |
| 364 | ) |
René Scharfe | bed6787 | 2017-08-07 13:04:18 +0200 | [diff] [blame] | 365 | status=$? |
| 366 | |
| 367 | chmod 700 $base && |
| 368 | rm -rf $base || |
SZEDER Gábor | 165293a | 2018-11-19 14:13:26 +0100 | [diff] [blame] | 369 | BUG "cannot clean $base" |
René Scharfe | bed6787 | 2017-08-07 13:04:18 +0200 | [diff] [blame] | 370 | return $status |
| 371 | ' |
| 372 | |
| 373 | check_long_base_path () { |
René Scharfe | a54e938 | 2017-03-26 15:43:50 +0200 | [diff] [blame] | 374 | # exceed initial buffer size of strbuf_getcwd() |
| 375 | component=123456789abcdef && |
| 376 | test_when_finished "chmod 0700 $component; rm -rf $component" && |
| 377 | p31=$component/$component && |
| 378 | p127=$p31/$p31/$p31/$p31 && |
| 379 | mkdir -p $p127 && |
René Scharfe | bed6787 | 2017-08-07 13:04:18 +0200 | [diff] [blame] | 380 | if test $# = 1 |
| 381 | then |
| 382 | chmod $1 $component |
| 383 | fi && |
René Scharfe | a54e938 | 2017-03-26 15:43:50 +0200 | [diff] [blame] | 384 | ( |
| 385 | cd $p127 && |
| 386 | git init newdir |
| 387 | ) |
René Scharfe | bed6787 | 2017-08-07 13:04:18 +0200 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | test_expect_success 'init in long base path' ' |
| 391 | check_long_base_path |
| 392 | ' |
| 393 | |
| 394 | test_expect_success GETCWD_IGNORES_PERMS 'init in long restricted base path' ' |
| 395 | check_long_base_path 0111 |
René Scharfe | a54e938 | 2017-03-26 15:43:50 +0200 | [diff] [blame] | 396 | ' |
| 397 | |
Nguyễn Thái Ngọc Duy | 487a2b7 | 2013-08-31 08:04:14 +0700 | [diff] [blame] | 398 | test_expect_success 're-init on .git file' ' |
| 399 | ( cd newdir && git init ) |
| 400 | ' |
| 401 | |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 402 | test_expect_success 're-init to update git link' ' |
Johannes Schindelin | ed33bd8 | 2019-06-24 19:40:05 +0200 | [diff] [blame] | 403 | git -C newdir init --separate-git-dir ../surrealgitdir && |
| 404 | newdir_git="$(cat newdir/.git)" && |
| 405 | test_cmp_fspath "$(pwd)/surrealgitdir" "${newdir_git#gitdir: }" && |
Jeff King | 633734d | 2014-03-20 19:17:35 -0400 | [diff] [blame] | 406 | test_path_is_dir surrealgitdir/refs && |
| 407 | test_path_is_missing realgitdir/refs |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 408 | ' |
| 409 | |
| 410 | test_expect_success 're-init to move gitdir' ' |
| 411 | rm -rf newdir realgitdir surrealgitdir && |
| 412 | git init newdir && |
Johannes Schindelin | ed33bd8 | 2019-06-24 19:40:05 +0200 | [diff] [blame] | 413 | git -C newdir init --separate-git-dir ../realgitdir && |
| 414 | newdir_git="$(cat newdir/.git)" && |
| 415 | test_cmp_fspath "$(pwd)/realgitdir" "${newdir_git#gitdir: }" && |
Jeff King | 633734d | 2014-03-20 19:17:35 -0400 | [diff] [blame] | 416 | test_path_is_dir realgitdir/refs |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 417 | ' |
| 418 | |
Johannes Sixt | 4e95fb6 | 2011-04-12 08:30:49 +0200 | [diff] [blame] | 419 | test_expect_success SYMLINKS 're-init to move gitdir symlink' ' |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 420 | rm -rf newdir realgitdir && |
| 421 | git init newdir && |
| 422 | ( |
| 423 | cd newdir && |
| 424 | mv .git here && |
| 425 | ln -s here .git && |
Nguyen Thai Ngoc Duy | 09ffc70 | 2011-05-24 23:40:32 +0700 | [diff] [blame] | 426 | git init --separate-git-dir ../realgitdir |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 427 | ) && |
Elia Pinto | 88619b3 | 2014-04-28 05:57:24 -0700 | [diff] [blame] | 428 | echo "gitdir: $(pwd)/realgitdir" >expected && |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 429 | test_cmp expected newdir/.git && |
Jeff King | 3d06c5f | 2014-03-20 19:17:15 -0400 | [diff] [blame] | 430 | test_cmp expected newdir/here && |
Jeff King | 633734d | 2014-03-20 19:17:35 -0400 | [diff] [blame] | 431 | test_path_is_dir realgitdir/refs |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 432 | ' |
| 433 | |
Eric Sunshine | 59d876c | 2020-08-31 02:58:00 -0400 | [diff] [blame] | 434 | sep_git_dir_worktree () { |
Eric Sunshine | 42264bc | 2020-08-31 02:57:59 -0400 | [diff] [blame] | 435 | test_when_finished "rm -rf mainwt linkwt seprepo" && |
| 436 | git init mainwt && |
| 437 | test_commit -C mainwt gumby && |
| 438 | git -C mainwt worktree add --detach ../linkwt && |
Eric Sunshine | 59d876c | 2020-08-31 02:58:00 -0400 | [diff] [blame] | 439 | git -C "$1" init --separate-git-dir ../seprepo && |
Eric Sunshine | 42264bc | 2020-08-31 02:57:59 -0400 | [diff] [blame] | 440 | git -C mainwt rev-parse --git-common-dir >expect && |
| 441 | git -C linkwt rev-parse --git-common-dir >actual && |
| 442 | test_cmp expect actual |
Eric Sunshine | 59d876c | 2020-08-31 02:58:00 -0400 | [diff] [blame] | 443 | } |
| 444 | |
| 445 | test_expect_success 're-init to move gitdir with linked worktrees' ' |
| 446 | sep_git_dir_worktree mainwt |
| 447 | ' |
| 448 | |
| 449 | test_expect_success 're-init to move gitdir within linked worktree' ' |
| 450 | sep_git_dir_worktree linkwt |
Eric Sunshine | 42264bc | 2020-08-31 02:57:59 -0400 | [diff] [blame] | 451 | ' |
| 452 | |
Johannes Schindelin | f30afda | 2016-05-11 10:43:37 +0200 | [diff] [blame] | 453 | test_expect_success MINGW '.git hidden' ' |
| 454 | rm -rf newdir && |
| 455 | ( |
Eric Sunshine | ed6c994 | 2018-07-01 20:23:43 -0400 | [diff] [blame] | 456 | sane_unset GIT_DIR GIT_WORK_TREE && |
Johannes Schindelin | f30afda | 2016-05-11 10:43:37 +0200 | [diff] [blame] | 457 | mkdir newdir && |
| 458 | cd newdir && |
| 459 | git init && |
Johannes Schindelin | 176a66a | 2020-04-11 13:40:22 +0000 | [diff] [blame] | 460 | test_path_is_hidden .git |
Johannes Schindelin | f30afda | 2016-05-11 10:43:37 +0200 | [diff] [blame] | 461 | ) && |
| 462 | check_config newdir/.git false unset |
| 463 | ' |
| 464 | |
| 465 | test_expect_success MINGW 'bare git dir not hidden' ' |
| 466 | rm -rf newdir && |
| 467 | ( |
Eric Sunshine | ed6c994 | 2018-07-01 20:23:43 -0400 | [diff] [blame] | 468 | sane_unset GIT_DIR GIT_WORK_TREE GIT_CONFIG && |
Johannes Schindelin | f30afda | 2016-05-11 10:43:37 +0200 | [diff] [blame] | 469 | mkdir newdir && |
| 470 | cd newdir && |
| 471 | git --bare init |
| 472 | ) && |
| 473 | ! is_hidden newdir |
| 474 | ' |
| 475 | |
Jeff King | b9605bc | 2016-09-12 20:24:15 -0700 | [diff] [blame] | 476 | test_expect_success 'remote init from does not use config from cwd' ' |
| 477 | rm -rf newdir && |
| 478 | test_config core.logallrefupdates true && |
| 479 | git init newdir && |
| 480 | echo true >expect && |
| 481 | git -C newdir config --bool core.logallrefupdates >actual && |
| 482 | test_cmp expect actual |
| 483 | ' |
| 484 | |
Nguyễn Thái Ngọc Duy | fe9aa0b | 2016-09-25 10:14:36 +0700 | [diff] [blame] | 485 | test_expect_success 're-init from a linked worktree' ' |
| 486 | git init main-worktree && |
| 487 | ( |
| 488 | cd main-worktree && |
| 489 | test_commit first && |
| 490 | git worktree add ../linked-worktree && |
| 491 | mv .git/info/exclude expected-exclude && |
Nguyễn Thái Ngọc Duy | 6311cfa | 2016-09-25 10:14:39 +0700 | [diff] [blame] | 492 | cp .git/config expected-config && |
Nguyễn Thái Ngọc Duy | fe9aa0b | 2016-09-25 10:14:36 +0700 | [diff] [blame] | 493 | find .git/worktrees -print | sort >expected && |
| 494 | git -C ../linked-worktree init && |
| 495 | test_cmp expected-exclude .git/info/exclude && |
Nguyễn Thái Ngọc Duy | 6311cfa | 2016-09-25 10:14:39 +0700 | [diff] [blame] | 496 | test_cmp expected-config .git/config && |
Nguyễn Thái Ngọc Duy | fe9aa0b | 2016-09-25 10:14:36 +0700 | [diff] [blame] | 497 | find .git/worktrees -print | sort >actual && |
| 498 | test_cmp expected actual |
| 499 | ) |
| 500 | ' |
| 501 | |
brian m. carlson | eff45da | 2020-07-29 23:14:22 +0000 | [diff] [blame] | 502 | test_expect_success 'init honors GIT_DEFAULT_HASH' ' |
| 503 | GIT_DEFAULT_HASH=sha1 git init sha1 && |
| 504 | git -C sha1 rev-parse --show-object-format >actual && |
| 505 | echo sha1 >expected && |
| 506 | test_cmp expected actual && |
| 507 | GIT_DEFAULT_HASH=sha256 git init sha256 && |
| 508 | git -C sha256 rev-parse --show-object-format >actual && |
| 509 | echo sha256 >expected && |
| 510 | test_cmp expected actual |
| 511 | ' |
| 512 | |
| 513 | test_expect_success 'init honors --object-format' ' |
| 514 | git init --object-format=sha1 explicit-sha1 && |
| 515 | git -C explicit-sha1 rev-parse --show-object-format >actual && |
| 516 | echo sha1 >expected && |
| 517 | test_cmp expected actual && |
| 518 | git init --object-format=sha256 explicit-sha256 && |
| 519 | git -C explicit-sha256 rev-parse --show-object-format >actual && |
| 520 | echo sha256 >expected && |
| 521 | test_cmp expected actual |
| 522 | ' |
| 523 | |
| 524 | test_expect_success 'extensions.objectFormat is not allowed with repo version 0' ' |
| 525 | git init --object-format=sha256 explicit-v0 && |
| 526 | git -C explicit-v0 config core.repositoryformatversion 0 && |
| 527 | test_must_fail git -C explicit-v0 rev-parse --show-object-format |
| 528 | ' |
| 529 | |
| 530 | test_expect_success 'init rejects attempts to initialize with different hash' ' |
| 531 | test_must_fail git -C sha1 init --object-format=sha256 && |
| 532 | test_must_fail git -C sha256 init --object-format=sha1 |
| 533 | ' |
| 534 | |
Patrick Steinhardt | d7497a4 | 2023-12-29 08:26:47 +0100 | [diff] [blame] | 535 | test_expect_success DEFAULT_REPO_FORMAT 'extensions.refStorage is not allowed with repo version 0' ' |
| 536 | test_when_finished "rm -rf refstorage" && |
| 537 | git init refstorage && |
| 538 | git -C refstorage config extensions.refStorage files && |
| 539 | test_must_fail git -C refstorage rev-parse 2>err && |
| 540 | grep "repo version is 0, but v1-only extension found" err |
| 541 | ' |
| 542 | |
| 543 | test_expect_success DEFAULT_REPO_FORMAT 'extensions.refStorage with files backend' ' |
| 544 | test_when_finished "rm -rf refstorage" && |
| 545 | git init refstorage && |
| 546 | git -C refstorage config core.repositoryformatversion 1 && |
| 547 | git -C refstorage config extensions.refStorage files && |
| 548 | test_commit -C refstorage A && |
| 549 | git -C refstorage rev-parse --verify HEAD |
| 550 | ' |
| 551 | |
| 552 | test_expect_success DEFAULT_REPO_FORMAT 'extensions.refStorage with unknown backend' ' |
| 553 | test_when_finished "rm -rf refstorage" && |
| 554 | git init refstorage && |
| 555 | git -C refstorage config core.repositoryformatversion 1 && |
| 556 | git -C refstorage config extensions.refStorage garbage && |
| 557 | test_must_fail git -C refstorage rev-parse 2>err && |
| 558 | grep "invalid value for ${SQ}extensions.refstorage${SQ}: ${SQ}garbage${SQ}" err |
| 559 | ' |
| 560 | |
Patrick Steinhardt | aa19619 | 2023-12-29 08:26:52 +0100 | [diff] [blame] | 561 | test_expect_success DEFAULT_REPO_FORMAT 'init with GIT_DEFAULT_REF_FORMAT=files' ' |
| 562 | test_when_finished "rm -rf refformat" && |
| 563 | GIT_DEFAULT_REF_FORMAT=files git init refformat && |
| 564 | echo 0 >expect && |
| 565 | git -C refformat config core.repositoryformatversion >actual && |
| 566 | test_cmp expect actual && |
| 567 | test_must_fail git -C refformat config extensions.refstorage |
| 568 | ' |
| 569 | |
| 570 | test_expect_success 'init with GIT_DEFAULT_REF_FORMAT=garbage' ' |
| 571 | test_when_finished "rm -rf refformat" && |
| 572 | cat >expect <<-EOF && |
| 573 | fatal: unknown ref storage format ${SQ}garbage${SQ} |
| 574 | EOF |
| 575 | test_must_fail env GIT_DEFAULT_REF_FORMAT=garbage git init refformat 2>err && |
| 576 | test_cmp expect err |
| 577 | ' |
| 578 | |
Patrick Steinhardt | 48fa45f | 2023-12-29 08:27:04 +0100 | [diff] [blame] | 579 | test_expect_success 'init with --ref-format=files' ' |
| 580 | test_when_finished "rm -rf refformat" && |
| 581 | git init --ref-format=files refformat && |
| 582 | echo files >expect && |
| 583 | git -C refformat rev-parse --show-ref-format >actual && |
| 584 | test_cmp expect actual |
| 585 | ' |
| 586 | |
Junio C Hamano | 5c7c063 | 2024-06-03 13:11:11 -0700 | [diff] [blame] | 587 | backends="files reftable" |
Patrick Steinhardt | 407997c | 2024-05-22 12:38:46 +0200 | [diff] [blame] | 588 | for from_format in $backends |
| 589 | do |
| 590 | test_expect_success "re-init with same format ($from_format)" ' |
| 591 | test_when_finished "rm -rf refformat" && |
| 592 | git init --ref-format=$from_format refformat && |
| 593 | git init --ref-format=$from_format refformat && |
| 594 | echo $from_format >expect && |
| 595 | git -C refformat rev-parse --show-ref-format >actual && |
| 596 | test_cmp expect actual |
| 597 | ' |
| 598 | |
| 599 | for to_format in $backends |
| 600 | do |
| 601 | if test "$from_format" = "$to_format" |
| 602 | then |
| 603 | continue |
| 604 | fi |
| 605 | |
| 606 | test_expect_success "re-init with different format fails ($from_format -> $to_format)" ' |
| 607 | test_when_finished "rm -rf refformat" && |
| 608 | git init --ref-format=$from_format refformat && |
| 609 | cat >expect <<-EOF && |
| 610 | fatal: attempt to reinitialize repository with different reference storage format |
| 611 | EOF |
| 612 | test_must_fail git init --ref-format=$to_format refformat 2>err && |
| 613 | test_cmp expect err && |
| 614 | echo $from_format >expect && |
| 615 | git -C refformat rev-parse --show-ref-format >actual && |
| 616 | test_cmp expect actual |
| 617 | ' |
| 618 | done |
| 619 | done |
Patrick Steinhardt | 48fa45f | 2023-12-29 08:27:04 +0100 | [diff] [blame] | 620 | |
| 621 | test_expect_success 'init with --ref-format=garbage' ' |
| 622 | test_when_finished "rm -rf refformat" && |
| 623 | cat >expect <<-EOF && |
| 624 | fatal: unknown ref storage format ${SQ}garbage${SQ} |
| 625 | EOF |
| 626 | test_must_fail git init --ref-format=garbage refformat 2>err && |
| 627 | test_cmp expect err |
| 628 | ' |
| 629 | |
Johannes Schindelin | 2878533 | 2019-03-11 13:10:58 -0700 | [diff] [blame] | 630 | test_expect_success MINGW 'core.hidedotfiles = false' ' |
| 631 | git config --global core.hidedotfiles false && |
| 632 | rm -rf newdir && |
| 633 | mkdir newdir && |
| 634 | ( |
| 635 | sane_unset GIT_DIR GIT_WORK_TREE GIT_CONFIG && |
| 636 | git -C newdir init |
| 637 | ) && |
| 638 | ! is_hidden newdir/.git |
| 639 | ' |
| 640 | |
Johannes Schindelin | 3f94442 | 2017-11-01 18:10:25 +0100 | [diff] [blame] | 641 | test_expect_success MINGW 'redirect std handles' ' |
| 642 | GIT_REDIRECT_STDOUT=output.txt git rev-parse --git-dir && |
| 643 | test .git = "$(cat output.txt)" && |
Johannes Schindelin | 1a172e4 | 2017-11-01 18:10:30 +0100 | [diff] [blame] | 644 | test -z "$(GIT_REDIRECT_STDOUT=off git rev-parse --git-dir)" && |
| 645 | test_must_fail env \ |
| 646 | GIT_REDIRECT_STDOUT=output.txt \ |
| 647 | GIT_REDIRECT_STDERR="2>&1" \ |
| 648 | git rev-parse --git-dir --verify refs/invalid && |
Johannes Schindelin | fdda1ac | 2019-06-19 14:05:57 -0700 | [diff] [blame] | 649 | grep "^\\.git\$" output.txt && |
| 650 | grep "Needed a single revision" output.txt |
Johannes Schindelin | 3f94442 | 2017-11-01 18:10:25 +0100 | [diff] [blame] | 651 | ' |
| 652 | |
Johannes Schindelin | 32ba12d | 2020-06-24 14:46:32 +0000 | [diff] [blame] | 653 | test_expect_success '--initial-branch' ' |
| 654 | git init --initial-branch=hello initial-branch-option && |
| 655 | git -C initial-branch-option symbolic-ref HEAD >actual && |
| 656 | echo refs/heads/hello >expect && |
| 657 | test_cmp expect actual && |
| 658 | |
| 659 | : re-initializing should not change the branch name && |
| 660 | git init --initial-branch=ignore initial-branch-option 2>err && |
Junio C Hamano | 6789275 | 2023-10-31 14:23:30 +0900 | [diff] [blame] | 661 | test_grep "ignored --initial-branch" err && |
Johannes Schindelin | 32ba12d | 2020-06-24 14:46:32 +0000 | [diff] [blame] | 662 | git -C initial-branch-option symbolic-ref HEAD >actual && |
| 663 | grep hello actual |
| 664 | ' |
| 665 | |
Don Goodman-Wilson | 8747ebb | 2020-06-24 14:46:33 +0000 | [diff] [blame] | 666 | test_expect_success 'overridden default initial branch name (config)' ' |
| 667 | test_config_global init.defaultBranch nmb && |
Johannes Schindelin | 704fed9 | 2020-10-23 14:00:00 +0000 | [diff] [blame] | 668 | GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= git init initial-branch-config && |
Don Goodman-Wilson | 8747ebb | 2020-06-24 14:46:33 +0000 | [diff] [blame] | 669 | git -C initial-branch-config symbolic-ref HEAD >actual && |
| 670 | grep nmb actual |
| 671 | ' |
| 672 | |
Johannes Schindelin | 675704c | 2020-12-11 11:36:57 +0000 | [diff] [blame] | 673 | test_expect_success 'advice on unconfigured init.defaultBranch' ' |
| 674 | GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= git -c color.advice=always \ |
| 675 | init unconfigured-default-branch-name 2>err && |
| 676 | test_decode_color <err >decoded && |
Junio C Hamano | 6789275 | 2023-10-31 14:23:30 +0900 | [diff] [blame] | 677 | test_grep "<YELLOW>hint: " decoded |
Johannes Schindelin | 675704c | 2020-12-11 11:36:57 +0000 | [diff] [blame] | 678 | ' |
| 679 | |
Johannes Schindelin | 704fed9 | 2020-10-23 14:00:00 +0000 | [diff] [blame] | 680 | test_expect_success 'overridden default main branch name (env)' ' |
| 681 | test_config_global init.defaultBranch nmb && |
| 682 | GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=env git init main-branch-env && |
| 683 | git -C main-branch-env symbolic-ref HEAD >actual && |
| 684 | grep env actual |
| 685 | ' |
| 686 | |
Don Goodman-Wilson | 8747ebb | 2020-06-24 14:46:33 +0000 | [diff] [blame] | 687 | test_expect_success 'invalid default branch name' ' |
Johannes Schindelin | 704fed9 | 2020-10-23 14:00:00 +0000 | [diff] [blame] | 688 | test_must_fail env GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME="with space" \ |
| 689 | git init initial-branch-invalid 2>err && |
Junio C Hamano | 6789275 | 2023-10-31 14:23:30 +0900 | [diff] [blame] | 690 | test_grep "invalid branch name" err |
Don Goodman-Wilson | 8747ebb | 2020-06-24 14:46:33 +0000 | [diff] [blame] | 691 | ' |
| 692 | |
Johannes Schindelin | cfaff3a | 2020-12-11 11:36:55 +0000 | [diff] [blame] | 693 | test_expect_success 'branch -m with the initial branch' ' |
| 694 | git init rename-initial && |
| 695 | git -C rename-initial branch -m renamed && |
Ævar Arnfjörð Bjarmason | 4bd0785 | 2023-02-06 23:44:31 +0100 | [diff] [blame] | 696 | echo renamed >expect && |
| 697 | git -C rename-initial symbolic-ref --short HEAD >actual && |
| 698 | test_cmp expect actual && |
| 699 | |
Johannes Schindelin | cfaff3a | 2020-12-11 11:36:55 +0000 | [diff] [blame] | 700 | git -C rename-initial branch -m renamed again && |
Ævar Arnfjörð Bjarmason | 4bd0785 | 2023-02-06 23:44:31 +0100 | [diff] [blame] | 701 | echo again >expect && |
| 702 | git -C rename-initial symbolic-ref --short HEAD >actual && |
| 703 | test_cmp expect actual |
Johannes Schindelin | cfaff3a | 2020-12-11 11:36:55 +0000 | [diff] [blame] | 704 | ' |
| 705 | |
Patrick Steinhardt | 407997c | 2024-05-22 12:38:46 +0200 | [diff] [blame] | 706 | test_expect_success 'init with includeIf.onbranch condition' ' |
| 707 | test_when_finished "rm -rf repo" && |
| 708 | git -c includeIf.onbranch:main.path=nonexistent init repo && |
| 709 | echo $GIT_DEFAULT_REF_FORMAT >expect && |
| 710 | git -C repo rev-parse --show-ref-format >actual && |
| 711 | test_cmp expect actual |
| 712 | ' |
| 713 | |
| 714 | test_expect_success 'init with includeIf.onbranch condition with existing directory' ' |
| 715 | test_when_finished "rm -rf repo" && |
| 716 | mkdir repo && |
| 717 | git -c includeIf.onbranch:nonexistent.path=/does/not/exist init repo && |
| 718 | echo $GIT_DEFAULT_REF_FORMAT >expect && |
| 719 | git -C repo rev-parse --show-ref-format >actual && |
| 720 | test_cmp expect actual |
| 721 | ' |
| 722 | |
| 723 | test_expect_success 're-init with includeIf.onbranch condition' ' |
| 724 | test_when_finished "rm -rf repo" && |
| 725 | git init repo && |
| 726 | git -c includeIf.onbranch:nonexistent.path=/does/not/exist init repo && |
| 727 | echo $GIT_DEFAULT_REF_FORMAT >expect && |
| 728 | git -C repo rev-parse --show-ref-format >actual && |
| 729 | test_cmp expect actual |
| 730 | ' |
| 731 | |
| 732 | test_expect_success 're-init with includeIf.onbranch condition' ' |
| 733 | test_when_finished "rm -rf repo" && |
| 734 | git init repo && |
| 735 | git -c includeIf.onbranch:nonexistent.path=/does/not/exist init repo && |
| 736 | echo $GIT_DEFAULT_REF_FORMAT >expect && |
| 737 | git -C repo rev-parse --show-ref-format >actual && |
| 738 | test_cmp expect actual |
| 739 | ' |
| 740 | |
| 741 | test_expect_success 're-init skips non-matching includeIf.onbranch' ' |
| 742 | test_when_finished "rm -rf repo config" && |
| 743 | cat >config <<-EOF && |
| 744 | [ |
| 745 | garbage |
| 746 | EOF |
| 747 | git init repo && |
| 748 | git -c includeIf.onbranch:nonexistent.path="$(test-tool path-utils absolute_path config)" init repo |
| 749 | ' |
| 750 | |
| 751 | test_expect_success 're-init reads matching includeIf.onbranch' ' |
| 752 | test_when_finished "rm -rf repo config" && |
| 753 | cat >config <<-EOF && |
| 754 | [ |
| 755 | garbage |
| 756 | EOF |
| 757 | path="$(test-tool path-utils absolute_path config)" && |
| 758 | git init --initial-branch=branch repo && |
| 759 | cat >expect <<-EOF && |
| 760 | fatal: bad config line 1 in file $path |
| 761 | EOF |
| 762 | test_must_fail git -c includeIf.onbranch:branch.path="$path" init repo 2>err && |
| 763 | test_cmp expect err |
| 764 | ' |
| 765 | |
Junio C Hamano | 6adcca3 | 2007-08-27 00:58:06 -0700 | [diff] [blame] | 766 | test_done |