]> git.ipfire.org Git - thirdparty/git.git/blob - t/t0001-init.sh
Merge branch 'ab/parse-options-cleanup'
[thirdparty/git.git] / t / t0001-init.sh
1 #!/bin/sh
2
3 test_description='git init'
4
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
7
8 check_config () {
9 if test -d "$1" && test -f "$1/config" && test -d "$1/refs"
10 then
11 : happy
12 else
13 echo "expected a directory $1, a file $1/config and $1/refs"
14 return 1
15 fi
16
17 if test_have_prereq POSIXPERM && test -x "$1/config"
18 then
19 echo "$1/config is executable?"
20 return 1
21 fi
22
23 bare=$(cd "$1" && git config --bool core.bare)
24 worktree=$(cd "$1" && git config core.worktree) ||
25 worktree=unset
26
27 test "$bare" = "$2" && test "$worktree" = "$3" || {
28 echo "expected bare=$2 worktree=$3"
29 echo " got bare=$bare worktree=$worktree"
30 return 1
31 }
32 }
33
34 test_expect_success 'plain' '
35 git init plain &&
36 check_config plain/.git false unset
37 '
38
39 test_expect_success 'plain nested in bare' '
40 (
41 git init --bare bare-ancestor.git &&
42 cd bare-ancestor.git &&
43 mkdir plain-nested &&
44 cd plain-nested &&
45 git init
46 ) &&
47 check_config bare-ancestor.git/plain-nested/.git false unset
48 '
49
50 test_expect_success 'plain through aliased command, outside any git repo' '
51 (
52 HOME=$(pwd)/alias-config &&
53 export HOME &&
54 mkdir alias-config &&
55 echo "[alias] aliasedinit = init" >alias-config/.gitconfig &&
56
57 GIT_CEILING_DIRECTORIES=$(pwd) &&
58 export GIT_CEILING_DIRECTORIES &&
59
60 mkdir plain-aliased &&
61 cd plain-aliased &&
62 git aliasedinit
63 ) &&
64 check_config plain-aliased/.git false unset
65 '
66
67 test_expect_success 'plain nested through aliased command' '
68 (
69 git init plain-ancestor-aliased &&
70 cd plain-ancestor-aliased &&
71 echo "[alias] aliasedinit = init" >>.git/config &&
72 mkdir plain-nested &&
73 cd plain-nested &&
74 git aliasedinit
75 ) &&
76 check_config plain-ancestor-aliased/plain-nested/.git false unset
77 '
78
79 test_expect_success 'plain nested in bare through aliased command' '
80 (
81 git init --bare bare-ancestor-aliased.git &&
82 cd bare-ancestor-aliased.git &&
83 echo "[alias] aliasedinit = init" >>config &&
84 mkdir plain-nested &&
85 cd plain-nested &&
86 git aliasedinit
87 ) &&
88 check_config bare-ancestor-aliased.git/plain-nested/.git false unset
89 '
90
91 test_expect_success 'No extra GIT_* on alias scripts' '
92 write_script script <<-\EOF &&
93 env |
94 sed -n \
95 -e "/^GIT_PREFIX=/d" \
96 -e "/^GIT_TEXTDOMAINDIR=/d" \
97 -e "/^GIT_TRACE2_PARENT/d" \
98 -e "/^GIT_/s/=.*//p" |
99 sort
100 EOF
101 ./script >expected &&
102 git config alias.script \!./script &&
103 ( mkdir sub && cd sub && git script >../actual ) &&
104 test_cmp expected actual
105 '
106
107 test_expect_success 'plain with GIT_WORK_TREE' '
108 mkdir plain-wt &&
109 test_must_fail env GIT_WORK_TREE="$(pwd)/plain-wt" git init plain-wt
110 '
111
112 test_expect_success 'plain bare' '
113 git --bare init plain-bare-1 &&
114 check_config plain-bare-1 true unset
115 '
116
117 test_expect_success 'plain bare with GIT_WORK_TREE' '
118 mkdir plain-bare-2 &&
119 test_must_fail \
120 env GIT_WORK_TREE="$(pwd)/plain-bare-2" \
121 git --bare init plain-bare-2
122 '
123
124 test_expect_success 'GIT_DIR bare' '
125 mkdir git-dir-bare.git &&
126 GIT_DIR=git-dir-bare.git git init &&
127 check_config git-dir-bare.git true unset
128 '
129
130 test_expect_success 'init --bare' '
131 git init --bare init-bare.git &&
132 check_config init-bare.git true unset
133 '
134
135 test_expect_success 'GIT_DIR non-bare' '
136
137 (
138 mkdir non-bare &&
139 cd non-bare &&
140 GIT_DIR=.git git init
141 ) &&
142 check_config non-bare/.git false unset
143 '
144
145 test_expect_success 'GIT_DIR & GIT_WORK_TREE (1)' '
146
147 (
148 mkdir git-dir-wt-1.git &&
149 GIT_WORK_TREE=$(pwd) GIT_DIR=git-dir-wt-1.git git init
150 ) &&
151 check_config git-dir-wt-1.git false "$(pwd)"
152 '
153
154 test_expect_success 'GIT_DIR & GIT_WORK_TREE (2)' '
155 mkdir git-dir-wt-2.git &&
156 test_must_fail env \
157 GIT_WORK_TREE="$(pwd)" \
158 GIT_DIR=git-dir-wt-2.git \
159 git --bare init
160 '
161
162 test_expect_success 'reinit' '
163
164 (
165 mkdir again &&
166 cd again &&
167 git -c init.defaultBranch=initial init >out1 2>err1 &&
168 git init >out2 2>err2
169 ) &&
170 test_i18ngrep "Initialized empty" again/out1 &&
171 test_i18ngrep "Reinitialized existing" again/out2 &&
172 test_must_be_empty again/err1 &&
173 test_must_be_empty again/err2
174 '
175
176 test_expect_success 'init with --template' '
177 mkdir template-source &&
178 echo content >template-source/file &&
179 git init --template=template-source template-custom &&
180 test_cmp template-source/file template-custom/.git/file
181 '
182
183 test_expect_success 'init with --template (blank)' '
184 git init template-plain &&
185 test_path_is_file template-plain/.git/info/exclude &&
186 git init --template= template-blank &&
187 test_path_is_missing template-blank/.git/info/exclude
188 '
189
190 init_no_templatedir_env () {
191 (
192 sane_unset GIT_TEMPLATE_DIR &&
193 NO_SET_GIT_TEMPLATE_DIR=t &&
194 export NO_SET_GIT_TEMPLATE_DIR &&
195 git init "$1"
196 )
197 }
198
199 test_expect_success 'init with init.templatedir set' '
200 mkdir templatedir-source &&
201 echo Content >templatedir-source/file &&
202 test_config_global init.templatedir "${HOME}/templatedir-source" &&
203
204 init_no_templatedir_env templatedir-set &&
205 test_cmp templatedir-source/file templatedir-set/.git/file
206 '
207
208 test_expect_success 'init with init.templatedir using ~ expansion' '
209 mkdir -p templatedir-source &&
210 echo Content >templatedir-source/file &&
211 test_config_global init.templatedir "~/templatedir-source" &&
212
213 init_no_templatedir_env templatedir-expansion &&
214 test_cmp templatedir-source/file templatedir-expansion/.git/file
215 '
216
217 test_expect_success 'init --bare/--shared overrides system/global config' '
218 test_config_global core.bare false &&
219 test_config_global core.sharedRepository 0640 &&
220 git init --bare --shared=0666 init-bare-shared-override &&
221 check_config init-bare-shared-override true unset &&
222 test x0666 = \
223 x$(git config -f init-bare-shared-override/config core.sharedRepository)
224 '
225
226 test_expect_success 'init honors global core.sharedRepository' '
227 test_config_global core.sharedRepository 0666 &&
228 git init shared-honor-global &&
229 test x0666 = \
230 x$(git config -f shared-honor-global/.git/config core.sharedRepository)
231 '
232
233 test_expect_success 'init allows insanely long --template' '
234 git init --template=$(printf "x%09999dx" 1) test
235 '
236
237 test_expect_success 'init creates a new directory' '
238 rm -fr newdir &&
239 git init newdir &&
240 test_path_is_dir newdir/.git/refs
241 '
242
243 test_expect_success 'init creates a new bare directory' '
244 rm -fr newdir &&
245 git init --bare newdir &&
246 test_path_is_dir newdir/refs
247 '
248
249 test_expect_success 'init recreates a directory' '
250 rm -fr newdir &&
251 mkdir newdir &&
252 git init newdir &&
253 test_path_is_dir newdir/.git/refs
254 '
255
256 test_expect_success 'init recreates a new bare directory' '
257 rm -fr newdir &&
258 mkdir newdir &&
259 git init --bare newdir &&
260 test_path_is_dir newdir/refs
261 '
262
263 test_expect_success 'init creates a new deep directory' '
264 rm -fr newdir &&
265 git init newdir/a/b/c &&
266 test_path_is_dir newdir/a/b/c/.git/refs
267 '
268
269 test_expect_success POSIXPERM 'init creates a new deep directory (umask vs. shared)' '
270 rm -fr newdir &&
271 (
272 # Leading directories should honor umask while
273 # the repository itself should follow "shared"
274 mkdir newdir &&
275 # Remove a default ACL if possible.
276 (setfacl -k newdir 2>/dev/null || true) &&
277 umask 002 &&
278 git init --bare --shared=0660 newdir/a/b/c &&
279 test_path_is_dir newdir/a/b/c/refs &&
280 ls -ld newdir/a newdir/a/b > lsab.out &&
281 ! grep -v "^drwxrw[sx]r-x" lsab.out &&
282 ls -ld newdir/a/b/c > lsc.out &&
283 ! grep -v "^drwxrw[sx]---" lsc.out
284 )
285 '
286
287 test_expect_success 'init notices EEXIST (1)' '
288 rm -fr newdir &&
289 >newdir &&
290 test_must_fail git init newdir &&
291 test_path_is_file newdir
292 '
293
294 test_expect_success 'init notices EEXIST (2)' '
295 rm -fr newdir &&
296 mkdir newdir &&
297 >newdir/a &&
298 test_must_fail git init newdir/a/b &&
299 test_path_is_file newdir/a
300 '
301
302 test_expect_success POSIXPERM,SANITY 'init notices EPERM' '
303 test_when_finished "chmod +w newdir" &&
304 rm -fr newdir &&
305 mkdir newdir &&
306 chmod -w newdir &&
307 test_must_fail git init newdir/a/b
308 '
309
310 test_expect_success 'init creates a new bare directory with global --bare' '
311 rm -rf newdir &&
312 git --bare init newdir &&
313 test_path_is_dir newdir/refs
314 '
315
316 test_expect_success 'init prefers command line to GIT_DIR' '
317 rm -rf newdir &&
318 mkdir otherdir &&
319 GIT_DIR=otherdir git --bare init newdir &&
320 test_path_is_dir newdir/refs &&
321 test_path_is_missing otherdir/refs
322 '
323
324 test_expect_success 'init with separate gitdir' '
325 rm -rf newdir &&
326 git init --separate-git-dir realgitdir newdir &&
327 newdir_git="$(cat newdir/.git)" &&
328 test_cmp_fspath "$(pwd)/realgitdir" "${newdir_git#gitdir: }" &&
329 test_path_is_dir realgitdir/refs
330 '
331
332 test_expect_success 'explicit bare & --separate-git-dir incompatible' '
333 test_must_fail git init --bare --separate-git-dir goop.git bare.git 2>err &&
334 test_i18ngrep "mutually exclusive" err
335 '
336
337 test_expect_success 'implicit bare & --separate-git-dir incompatible' '
338 test_when_finished "rm -rf bare.git" &&
339 mkdir -p bare.git &&
340 test_must_fail env GIT_DIR=. \
341 git -C bare.git init --separate-git-dir goop.git 2>err &&
342 test_i18ngrep "incompatible" err
343 '
344
345 test_expect_success 'bare & --separate-git-dir incompatible within worktree' '
346 test_when_finished "rm -rf bare.git linkwt seprepo" &&
347 test_commit gumby &&
348 git clone --bare . bare.git &&
349 git -C bare.git worktree add --detach ../linkwt &&
350 test_must_fail git -C linkwt init --separate-git-dir seprepo 2>err &&
351 test_i18ngrep "incompatible" err
352 '
353
354 test_lazy_prereq GETCWD_IGNORES_PERMS '
355 base=GETCWD_TEST_BASE_DIR &&
356 mkdir -p $base/dir &&
357 chmod 100 $base ||
358 BUG "cannot prepare $base"
359
360 (
361 cd $base/dir &&
362 test-tool getcwd
363 )
364 status=$?
365
366 chmod 700 $base &&
367 rm -rf $base ||
368 BUG "cannot clean $base"
369 return $status
370 '
371
372 check_long_base_path () {
373 # exceed initial buffer size of strbuf_getcwd()
374 component=123456789abcdef &&
375 test_when_finished "chmod 0700 $component; rm -rf $component" &&
376 p31=$component/$component &&
377 p127=$p31/$p31/$p31/$p31 &&
378 mkdir -p $p127 &&
379 if test $# = 1
380 then
381 chmod $1 $component
382 fi &&
383 (
384 cd $p127 &&
385 git init newdir
386 )
387 }
388
389 test_expect_success 'init in long base path' '
390 check_long_base_path
391 '
392
393 test_expect_success GETCWD_IGNORES_PERMS 'init in long restricted base path' '
394 check_long_base_path 0111
395 '
396
397 test_expect_success 're-init on .git file' '
398 ( cd newdir && git init )
399 '
400
401 test_expect_success 're-init to update git link' '
402 git -C newdir init --separate-git-dir ../surrealgitdir &&
403 newdir_git="$(cat newdir/.git)" &&
404 test_cmp_fspath "$(pwd)/surrealgitdir" "${newdir_git#gitdir: }" &&
405 test_path_is_dir surrealgitdir/refs &&
406 test_path_is_missing realgitdir/refs
407 '
408
409 test_expect_success 're-init to move gitdir' '
410 rm -rf newdir realgitdir surrealgitdir &&
411 git init newdir &&
412 git -C newdir init --separate-git-dir ../realgitdir &&
413 newdir_git="$(cat newdir/.git)" &&
414 test_cmp_fspath "$(pwd)/realgitdir" "${newdir_git#gitdir: }" &&
415 test_path_is_dir realgitdir/refs
416 '
417
418 test_expect_success SYMLINKS 're-init to move gitdir symlink' '
419 rm -rf newdir realgitdir &&
420 git init newdir &&
421 (
422 cd newdir &&
423 mv .git here &&
424 ln -s here .git &&
425 git init --separate-git-dir ../realgitdir
426 ) &&
427 echo "gitdir: $(pwd)/realgitdir" >expected &&
428 test_cmp expected newdir/.git &&
429 test_cmp expected newdir/here &&
430 test_path_is_dir realgitdir/refs
431 '
432
433 sep_git_dir_worktree () {
434 test_when_finished "rm -rf mainwt linkwt seprepo" &&
435 git init mainwt &&
436 test_commit -C mainwt gumby &&
437 git -C mainwt worktree add --detach ../linkwt &&
438 git -C "$1" init --separate-git-dir ../seprepo &&
439 git -C mainwt rev-parse --git-common-dir >expect &&
440 git -C linkwt rev-parse --git-common-dir >actual &&
441 test_cmp expect actual
442 }
443
444 test_expect_success 're-init to move gitdir with linked worktrees' '
445 sep_git_dir_worktree mainwt
446 '
447
448 test_expect_success 're-init to move gitdir within linked worktree' '
449 sep_git_dir_worktree linkwt
450 '
451
452 test_expect_success MINGW '.git hidden' '
453 rm -rf newdir &&
454 (
455 sane_unset GIT_DIR GIT_WORK_TREE &&
456 mkdir newdir &&
457 cd newdir &&
458 git init &&
459 test_path_is_hidden .git
460 ) &&
461 check_config newdir/.git false unset
462 '
463
464 test_expect_success MINGW 'bare git dir not hidden' '
465 rm -rf newdir &&
466 (
467 sane_unset GIT_DIR GIT_WORK_TREE GIT_CONFIG &&
468 mkdir newdir &&
469 cd newdir &&
470 git --bare init
471 ) &&
472 ! is_hidden newdir
473 '
474
475 test_expect_success 'remote init from does not use config from cwd' '
476 rm -rf newdir &&
477 test_config core.logallrefupdates true &&
478 git init newdir &&
479 echo true >expect &&
480 git -C newdir config --bool core.logallrefupdates >actual &&
481 test_cmp expect actual
482 '
483
484 test_expect_success 're-init from a linked worktree' '
485 git init main-worktree &&
486 (
487 cd main-worktree &&
488 test_commit first &&
489 git worktree add ../linked-worktree &&
490 mv .git/info/exclude expected-exclude &&
491 cp .git/config expected-config &&
492 find .git/worktrees -print | sort >expected &&
493 git -C ../linked-worktree init &&
494 test_cmp expected-exclude .git/info/exclude &&
495 test_cmp expected-config .git/config &&
496 find .git/worktrees -print | sort >actual &&
497 test_cmp expected actual
498 )
499 '
500
501 test_expect_success 'init honors GIT_DEFAULT_HASH' '
502 GIT_DEFAULT_HASH=sha1 git init sha1 &&
503 git -C sha1 rev-parse --show-object-format >actual &&
504 echo sha1 >expected &&
505 test_cmp expected actual &&
506 GIT_DEFAULT_HASH=sha256 git init sha256 &&
507 git -C sha256 rev-parse --show-object-format >actual &&
508 echo sha256 >expected &&
509 test_cmp expected actual
510 '
511
512 test_expect_success 'init honors --object-format' '
513 git init --object-format=sha1 explicit-sha1 &&
514 git -C explicit-sha1 rev-parse --show-object-format >actual &&
515 echo sha1 >expected &&
516 test_cmp expected actual &&
517 git init --object-format=sha256 explicit-sha256 &&
518 git -C explicit-sha256 rev-parse --show-object-format >actual &&
519 echo sha256 >expected &&
520 test_cmp expected actual
521 '
522
523 test_expect_success 'extensions.objectFormat is not allowed with repo version 0' '
524 git init --object-format=sha256 explicit-v0 &&
525 git -C explicit-v0 config core.repositoryformatversion 0 &&
526 test_must_fail git -C explicit-v0 rev-parse --show-object-format
527 '
528
529 test_expect_success 'init rejects attempts to initialize with different hash' '
530 test_must_fail git -C sha1 init --object-format=sha256 &&
531 test_must_fail git -C sha256 init --object-format=sha1
532 '
533
534 test_expect_success MINGW 'core.hidedotfiles = false' '
535 git config --global core.hidedotfiles false &&
536 rm -rf newdir &&
537 mkdir newdir &&
538 (
539 sane_unset GIT_DIR GIT_WORK_TREE GIT_CONFIG &&
540 git -C newdir init
541 ) &&
542 ! is_hidden newdir/.git
543 '
544
545 test_expect_success MINGW 'redirect std handles' '
546 GIT_REDIRECT_STDOUT=output.txt git rev-parse --git-dir &&
547 test .git = "$(cat output.txt)" &&
548 test -z "$(GIT_REDIRECT_STDOUT=off git rev-parse --git-dir)" &&
549 test_must_fail env \
550 GIT_REDIRECT_STDOUT=output.txt \
551 GIT_REDIRECT_STDERR="2>&1" \
552 git rev-parse --git-dir --verify refs/invalid &&
553 grep "^\\.git\$" output.txt &&
554 grep "Needed a single revision" output.txt
555 '
556
557 test_expect_success '--initial-branch' '
558 git init --initial-branch=hello initial-branch-option &&
559 git -C initial-branch-option symbolic-ref HEAD >actual &&
560 echo refs/heads/hello >expect &&
561 test_cmp expect actual &&
562
563 : re-initializing should not change the branch name &&
564 git init --initial-branch=ignore initial-branch-option 2>err &&
565 test_i18ngrep "ignored --initial-branch" err &&
566 git -C initial-branch-option symbolic-ref HEAD >actual &&
567 grep hello actual
568 '
569
570 test_expect_success 'overridden default initial branch name (config)' '
571 test_config_global init.defaultBranch nmb &&
572 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= git init initial-branch-config &&
573 git -C initial-branch-config symbolic-ref HEAD >actual &&
574 grep nmb actual
575 '
576
577 test_expect_success 'advice on unconfigured init.defaultBranch' '
578 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= git -c color.advice=always \
579 init unconfigured-default-branch-name 2>err &&
580 test_decode_color <err >decoded &&
581 test_i18ngrep "<YELLOW>hint: " decoded
582 '
583
584 test_expect_success 'overridden default main branch name (env)' '
585 test_config_global init.defaultBranch nmb &&
586 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=env git init main-branch-env &&
587 git -C main-branch-env symbolic-ref HEAD >actual &&
588 grep env actual
589 '
590
591 test_expect_success 'invalid default branch name' '
592 test_must_fail env GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME="with space" \
593 git init initial-branch-invalid 2>err &&
594 test_i18ngrep "invalid branch name" err
595 '
596
597 test_expect_success 'branch -m with the initial branch' '
598 git init rename-initial &&
599 git -C rename-initial branch -m renamed &&
600 test renamed = $(git -C rename-initial symbolic-ref --short HEAD) &&
601 git -C rename-initial branch -m renamed again &&
602 test again = $(git -C rename-initial symbolic-ref --short HEAD)
603 '
604
605 test_done