3 test_description
='git init'
8 if test_path_is_dir
"$1" &&
9 test_path_is_file
"$1/config" && test_path_is_dir
"$1/refs"
13 echo "expected a directory $1, a file $1/config and $1/refs"
17 if test_have_prereq POSIXPERM
&& test -x "$1/config"
19 echo "$1/config is executable?"
23 bare
=$
(cd "$1" && git config
--bool core.bare
)
24 worktree
=$
(cd "$1" && git config core.worktree
) ||
27 test "$bare" = "$2" && test "$worktree" = "$3" ||
{
28 echo "expected bare=$2 worktree=$3"
29 echo " got bare=$bare worktree=$worktree"
34 test_expect_success
'plain' '
36 check_config plain/.git false unset
39 test_expect_success
'plain nested in bare' '
41 git init --bare bare-ancestor.git &&
42 cd bare-ancestor.git &&
47 check_config bare-ancestor.git/plain-nested/.git false unset
50 test_expect_success
'plain through aliased command, outside any git repo' '
52 HOME=$(pwd)/alias-config &&
55 echo "[alias] aliasedinit = init" >alias-config/.gitconfig &&
57 GIT_CEILING_DIRECTORIES=$(pwd) &&
58 export GIT_CEILING_DIRECTORIES &&
60 mkdir plain-aliased &&
64 check_config plain-aliased/.git false unset
67 test_expect_success
'plain nested through aliased command' '
69 git init plain-ancestor-aliased &&
70 cd plain-ancestor-aliased &&
71 echo "[alias] aliasedinit = init" >>.git/config &&
76 check_config plain-ancestor-aliased/plain-nested/.git false unset
79 test_expect_success
'plain nested in bare through aliased command' '
81 git init --bare bare-ancestor-aliased.git &&
82 cd bare-ancestor-aliased.git &&
83 echo "[alias] aliasedinit = init" >>config &&
88 check_config bare-ancestor-aliased.git/plain-nested/.git false unset
91 test_expect_success
'No extra GIT_* on alias scripts' '
92 write_script script <<-\EOF &&
95 -e "/^GIT_PREFIX=/d" \
96 -e "/^GIT_TEXTDOMAINDIR=/d" \
97 -e "/^GIT_TRACE2_PARENT/d" \
98 -e "/^GIT_/s/=.*//p" |
101 ./script >expected &&
102 git config alias.script \!./script &&
103 ( mkdir sub && cd sub && git script >../actual ) &&
104 test_cmp expected actual
107 test_expect_success
'plain with GIT_WORK_TREE' '
109 test_must_fail env GIT_WORK_TREE="$(pwd)/plain-wt" git init plain-wt
112 test_expect_success
'plain bare' '
113 git --bare init plain-bare-1 &&
114 check_config plain-bare-1 true unset
117 test_expect_success
'plain bare with GIT_WORK_TREE' '
118 mkdir plain-bare-2 &&
120 env GIT_WORK_TREE="$(pwd)/plain-bare-2" \
121 git --bare init plain-bare-2
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
130 test_expect_success
'init --bare' '
131 git init --bare init-bare.git &&
132 check_config init-bare.git true unset
135 test_expect_success
'GIT_DIR non-bare' '
140 GIT_DIR=.git git init
142 check_config non-bare/.git false unset
145 test_expect_success
'GIT_DIR & GIT_WORK_TREE (1)' '
148 mkdir git-dir-wt-1.git &&
149 GIT_WORK_TREE=$(pwd) GIT_DIR=git-dir-wt-1.git git init
151 check_config git-dir-wt-1.git false "$(pwd)"
154 test_expect_success
'GIT_DIR & GIT_WORK_TREE (2)' '
155 mkdir git-dir-wt-2.git &&
157 GIT_WORK_TREE="$(pwd)" \
158 GIT_DIR=git-dir-wt-2.git \
162 test_expect_success
'reinit' '
167 git -c init.defaultBranch=initial init >out1 2>err1 &&
168 git init >out2 2>err2
170 test_grep "Initialized empty" again/out1 &&
171 test_grep "Reinitialized existing" again/out2 &&
172 test_must_be_empty again/err1 &&
173 test_must_be_empty again/err2
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
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
190 init_no_templatedir_env
() {
192 sane_unset GIT_TEMPLATE_DIR
&&
193 NO_SET_GIT_TEMPLATE_DIR
=t
&&
194 export NO_SET_GIT_TEMPLATE_DIR
&&
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" &&
204 init_no_templatedir_env templatedir-set &&
205 test_cmp templatedir-source/file templatedir-set/.git/file
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" &&
213 init_no_templatedir_env templatedir-expansion &&
214 test_cmp templatedir-source/file templatedir-expansion/.git/file
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 &&
223 x$(git config -f init-bare-shared-override/config core.sharedRepository)
226 test_expect_success
'init honors global core.sharedRepository' '
227 test_config_global core.sharedRepository 0666 &&
228 git init shared-honor-global &&
230 x$(git config -f shared-honor-global/.git/config core.sharedRepository)
233 test_expect_success
'init allows insanely long --template' '
234 git init --template=$(printf "x%09999dx" 1) test
237 test_expect_success
'init creates a new directory' '
240 test_path_is_dir newdir/.git/refs
243 test_expect_success
'init creates a new bare directory' '
245 git init --bare newdir &&
246 test_path_is_dir newdir/refs
249 test_expect_success
'init recreates a directory' '
253 test_path_is_dir newdir/.git/refs
256 test_expect_success
'init recreates a new bare directory' '
259 git init --bare newdir &&
260 test_path_is_dir newdir/refs
263 test_expect_success
'init creates a new deep directory' '
265 git init newdir/a/b/c &&
266 test_path_is_dir newdir/a/b/c/.git/refs
269 test_expect_success POSIXPERM
'init creates a new deep directory (umask vs. shared)' '
272 # Leading directories should honor umask while
273 # the repository itself should follow "shared"
275 # Remove a default ACL if possible.
276 (setfacl -k newdir 2>/dev/null || true) &&
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
287 test_expect_success
'init notices EEXIST (1)' '
290 test_must_fail git init newdir &&
291 test_path_is_file newdir
294 test_expect_success
'init notices EEXIST (2)' '
298 test_must_fail git init newdir/a/b &&
299 test_path_is_file newdir/a
302 test_expect_success POSIXPERM
,SANITY
'init notices EPERM' '
303 test_when_finished "chmod +w newdir" &&
307 test_must_fail git init newdir/a/b
310 test_expect_success
'init creates a new bare directory with global --bare' '
312 git --bare init newdir &&
313 test_path_is_dir newdir/refs
316 test_expect_success
'init prefers command line to GIT_DIR' '
319 GIT_DIR=otherdir git --bare init newdir &&
320 test_path_is_dir newdir/refs &&
321 test_path_is_missing otherdir/refs
324 test_expect_success
'init with separate gitdir' '
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
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_grep "cannot be used together" err
337 test_expect_success
'implicit bare & --separate-git-dir incompatible' '
338 test_when_finished "rm -rf bare.git" &&
340 test_must_fail env GIT_DIR=. \
341 git -C bare.git init --separate-git-dir goop.git 2>err &&
342 test_grep "incompatible" err
345 test_expect_success
'bare & --separate-git-dir incompatible within worktree' '
346 test_when_finished "rm -rf bare.git linkwt seprepo" &&
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_grep "incompatible" err
354 test_lazy_prereq GETCWD_IGNORES_PERMS
'
355 base=GETCWD_TEST_BASE_DIR &&
356 mkdir -p $base/dir &&
358 BUG "cannot prepare $base"
368 BUG "cannot clean $base"
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 &&
389 test_expect_success
'init in long base path' '
393 test_expect_success GETCWD_IGNORES_PERMS
'init in long restricted base path' '
394 check_long_base_path 0111
397 test_expect_success
're-init on .git file' '
398 ( cd newdir && git init )
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
409 test_expect_success
're-init to move gitdir' '
410 rm -rf newdir realgitdir surrealgitdir &&
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
418 test_expect_success SYMLINKS
're-init to move gitdir symlink' '
419 rm -rf newdir realgitdir &&
425 git init --separate-git-dir ../realgitdir
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
433 sep_git_dir_worktree
() {
434 test_when_finished
"rm -rf mainwt linkwt seprepo" &&
436 if test "relative" = $2
438 test_config
-C mainwt worktree.useRelativePaths true
440 test_config
-C mainwt worktree.useRelativePaths false
442 test_commit
-C mainwt gumby
&&
443 git
-C mainwt worktree add
--detach ..
/linkwt
&&
444 git
-C "$1" init
--separate-git-dir ..
/seprepo
&&
445 git
-C mainwt rev-parse
--git-common-dir >expect
&&
446 git
-C linkwt rev-parse
--git-common-dir >actual
&&
447 test_cmp expect actual
450 test_expect_success
're-init to move gitdir with linked worktrees (absolute)' '
451 sep_git_dir_worktree mainwt absolute
454 test_expect_success
're-init to move gitdir within linked worktree (absolute)' '
455 sep_git_dir_worktree linkwt absolute
458 test_expect_success
're-init to move gitdir with linked worktrees (relative)' '
459 sep_git_dir_worktree mainwt relative
462 test_expect_success
're-init to move gitdir within linked worktree (relative)' '
463 sep_git_dir_worktree linkwt relative
466 test_expect_success MINGW
'.git hidden' '
469 sane_unset GIT_DIR GIT_WORK_TREE &&
473 test_path_is_hidden .git
475 check_config newdir/.git false unset
478 test_expect_success MINGW
'bare git dir not hidden' '
481 sane_unset GIT_DIR GIT_WORK_TREE GIT_CONFIG &&
489 test_expect_success
'remote init from does not use config from cwd' '
491 test_config core.logallrefupdates true &&
494 git -C newdir config --bool core.logallrefupdates >actual &&
495 test_cmp expect actual
498 test_expect_success
're-init from a linked worktree' '
499 git init main-worktree &&
503 git worktree add ../linked-worktree &&
504 mv .git/info/exclude expected-exclude &&
505 cp .git/config expected-config &&
506 find .git/worktrees -print | sort >expected &&
507 git -C ../linked-worktree init &&
508 test_cmp expected-exclude .git/info/exclude &&
509 test_cmp expected-config .git/config &&
510 find .git/worktrees -print | sort >actual &&
511 test_cmp expected actual
515 test_expect_success
'init honors GIT_DEFAULT_HASH' '
516 test_when_finished "rm -rf sha1 sha256" &&
517 GIT_DEFAULT_HASH=sha1 git init sha1 &&
518 git -C sha1 rev-parse --show-object-format >actual &&
519 echo sha1 >expected &&
520 test_cmp expected actual &&
521 GIT_DEFAULT_HASH=sha256 git init sha256 &&
522 git -C sha256 rev-parse --show-object-format >actual &&
523 echo sha256 >expected &&
524 test_cmp expected actual
527 test_expect_success
'init honors --object-format' '
528 test_when_finished "rm -rf explicit-sha1 explicit-sha256" &&
529 git init --object-format=sha1 explicit-sha1 &&
530 git -C explicit-sha1 rev-parse --show-object-format >actual &&
531 echo sha1 >expected &&
532 test_cmp expected actual &&
533 git init --object-format=sha256 explicit-sha256 &&
534 git -C explicit-sha256 rev-parse --show-object-format >actual &&
535 echo sha256 >expected &&
536 test_cmp expected actual
539 test_expect_success
'init honors init.defaultObjectFormat' '
540 test_when_finished "rm -rf sha1 sha256" &&
542 test_config_global init.defaultObjectFormat sha1 &&
544 sane_unset GIT_DEFAULT_HASH &&
546 git -C sha1 rev-parse --show-object-format >actual &&
547 echo sha1 >expected &&
548 test_cmp expected actual
551 test_config_global init.defaultObjectFormat sha256 &&
553 sane_unset GIT_DEFAULT_HASH &&
555 git -C sha256 rev-parse --show-object-format >actual &&
556 echo sha256 >expected &&
557 test_cmp expected actual
561 test_expect_success
'init warns about invalid init.defaultObjectFormat' '
562 test_when_finished "rm -rf repo" &&
563 test_config_global init.defaultObjectFormat garbage &&
565 echo "warning: unknown hash algorithm ${SQ}garbage${SQ}" >expect &&
566 git init repo 2>err &&
567 test_cmp expect err &&
569 git -C repo rev-parse --show-object-format >actual &&
570 echo $GIT_DEFAULT_HASH >expected &&
571 test_cmp expected actual
574 test_expect_success
'--object-format overrides GIT_DEFAULT_HASH' '
575 test_when_finished "rm -rf repo" &&
576 GIT_DEFAULT_HASH=sha1 git init --object-format=sha256 repo &&
577 git -C repo rev-parse --show-object-format >actual &&
578 echo sha256 >expected
581 test_expect_success
'GIT_DEFAULT_HASH overrides init.defaultObjectFormat' '
582 test_when_finished "rm -rf repo" &&
583 test_config_global init.defaultObjectFormat sha1 &&
584 GIT_DEFAULT_HASH=sha256 git init repo &&
585 git -C repo rev-parse --show-object-format >actual &&
586 echo sha256 >expected
589 for hash in sha1 sha256
591 test_expect_success
"reinit repository with GIT_DEFAULT_HASH=$hash does not change format" '
592 test_when_finished "rm -rf repo" &&
594 git -C repo rev-parse --show-object-format >expect &&
595 GIT_DEFAULT_HASH=$hash git init repo &&
596 git -C repo rev-parse --show-object-format >actual &&
597 test_cmp expect actual
601 test_expect_success
'extensions.objectFormat is not allowed with repo version 0' '
602 test_when_finished "rm -rf explicit-v0" &&
603 git init --object-format=sha256 explicit-v0 &&
604 git -C explicit-v0 config core.repositoryformatversion 0 &&
605 test_must_fail git -C explicit-v0 rev-parse --show-object-format
608 test_expect_success
'init rejects attempts to initialize with different hash' '
609 test_must_fail git -C sha1 init --object-format=sha256 &&
610 test_must_fail git -C sha256 init --object-format=sha1
613 test_expect_success DEFAULT_REPO_FORMAT
'extensions.refStorage is not allowed with repo version 0' '
614 test_when_finished "rm -rf refstorage" &&
615 git init refstorage &&
616 git -C refstorage config extensions.refStorage files &&
617 test_must_fail git -C refstorage rev-parse 2>err &&
618 grep "repo version is 0, but v1-only extension found" err
621 test_expect_success DEFAULT_REPO_FORMAT
'extensions.refStorage with files backend' '
622 test_when_finished "rm -rf refstorage" &&
623 git init refstorage &&
624 git -C refstorage config core.repositoryformatversion 1 &&
625 git -C refstorage config extensions.refStorage files &&
626 test_commit -C refstorage A &&
627 git -C refstorage rev-parse --verify HEAD
630 test_expect_success DEFAULT_REPO_FORMAT
'extensions.refStorage with unknown backend' '
631 test_when_finished "rm -rf refstorage" &&
632 git init refstorage &&
633 git -C refstorage config core.repositoryformatversion 1 &&
634 git -C refstorage config extensions.refStorage garbage &&
635 test_must_fail git -C refstorage rev-parse 2>err &&
636 grep "invalid value for ${SQ}extensions.refstorage${SQ}: ${SQ}garbage${SQ}" err
639 test_expect_success
'init with GIT_DEFAULT_REF_FORMAT=garbage' '
640 test_when_finished "rm -rf refformat" &&
641 cat >expect <<-EOF &&
642 fatal: unknown ref storage format ${SQ}garbage${SQ}
644 test_must_fail env GIT_DEFAULT_REF_FORMAT=garbage git init refformat 2>err &&
648 test_expect_success
'init warns about invalid init.defaultRefFormat' '
649 test_when_finished "rm -rf repo" &&
650 test_config_global init.defaultRefFormat garbage &&
652 echo "warning: unknown ref storage format ${SQ}garbage${SQ}" >expect &&
653 git init repo 2>err &&
654 test_cmp expect err &&
656 git -C repo rev-parse --show-ref-format >actual &&
657 echo $GIT_DEFAULT_REF_FORMAT >expected &&
658 test_cmp expected actual
661 backends
="files reftable"
662 for format
in $backends
664 test_expect_success DEFAULT_REPO_FORMAT
"init with GIT_DEFAULT_REF_FORMAT=$format" '
665 test_when_finished "rm -rf refformat" &&
666 GIT_DEFAULT_REF_FORMAT=$format git init refformat &&
668 if test $format = files
670 test_must_fail git -C refformat config extensions.refstorage &&
673 git -C refformat config extensions.refstorage &&
676 git -C refformat config core.repositoryformatversion >actual &&
677 test_cmp expect actual &&
679 echo $format >expect &&
680 git -C refformat rev-parse --show-ref-format >actual &&
681 test_cmp expect actual
684 test_expect_success
"init with --ref-format=$format" '
685 test_when_finished "rm -rf refformat" &&
686 git init --ref-format=$format refformat &&
687 echo $format >expect &&
688 git -C refformat rev-parse --show-ref-format >actual &&
689 test_cmp expect actual
692 test_expect_success
"init with init.defaultRefFormat=$format" '
693 test_when_finished "rm -rf refformat" &&
694 test_config_global init.defaultRefFormat $format &&
696 sane_unset GIT_DEFAULT_REF_FORMAT &&
700 echo $format >expect &&
701 git -C refformat rev-parse --show-ref-format >actual &&
702 test_cmp expect actual
705 test_expect_success
"--ref-format=$format overrides GIT_DEFAULT_REF_FORMAT" '
706 test_when_finished "rm -rf refformat" &&
707 GIT_DEFAULT_REF_FORMAT=garbage git init --ref-format=$format refformat &&
708 echo $format >expect &&
709 git -C refformat rev-parse --show-ref-format >actual &&
710 test_cmp expect actual
713 test_expect_success
"reinit repository with GIT_DEFAULT_REF_FORMAT=$format does not change format" '
714 test_when_finished "rm -rf refformat" &&
715 git init refformat &&
716 git -C refformat rev-parse --show-ref-format >expect &&
717 GIT_DEFAULT_REF_FORMAT=$format git init refformat &&
718 git -C refformat rev-parse --show-ref-format >actual &&
719 test_cmp expect actual
723 test_expect_success
"--ref-format= overrides GIT_DEFAULT_REF_FORMAT" '
724 test_when_finished "rm -rf refformat" &&
725 GIT_DEFAULT_REF_FORMAT=files git init --ref-format=reftable refformat &&
726 echo reftable >expect &&
727 git -C refformat rev-parse --show-ref-format >actual &&
728 test_cmp expect actual
731 test_expect_success
"GIT_DEFAULT_REF_FORMAT= overrides init.defaultRefFormat" '
732 test_when_finished "rm -rf refformat" &&
733 test_config_global init.defaultRefFormat files &&
735 GIT_DEFAULT_REF_FORMAT=reftable git init refformat &&
736 echo reftable >expect &&
737 git -C refformat rev-parse --show-ref-format >actual &&
738 test_cmp expect actual
741 for from_format
in $backends
743 test_expect_success
"re-init with same format ($from_format)" '
744 test_when_finished "rm -rf refformat" &&
745 git init --ref-format=$from_format refformat &&
746 git init --ref-format=$from_format refformat &&
747 echo $from_format >expect &&
748 git -C refformat rev-parse --show-ref-format >actual &&
749 test_cmp expect actual
752 for to_format
in $backends
754 if test "$from_format" = "$to_format"
759 test_expect_success
"re-init with different format fails ($from_format -> $to_format)" '
760 test_when_finished "rm -rf refformat" &&
761 git init --ref-format=$from_format refformat &&
762 cat >expect <<-EOF &&
763 fatal: attempt to reinitialize repository with different reference storage format
765 test_must_fail git init --ref-format=$to_format refformat 2>err &&
766 test_cmp expect err &&
767 echo $from_format >expect &&
768 git -C refformat rev-parse --show-ref-format >actual &&
769 test_cmp expect actual
774 test_expect_success
'init with --ref-format=garbage' '
775 test_when_finished "rm -rf refformat" &&
776 cat >expect <<-EOF &&
777 fatal: unknown ref storage format ${SQ}garbage${SQ}
779 test_must_fail git init --ref-format=garbage refformat 2>err &&
783 test_expect_success MINGW
'core.hidedotfiles = false' '
784 git config --global core.hidedotfiles false &&
788 sane_unset GIT_DIR GIT_WORK_TREE GIT_CONFIG &&
791 ! is_hidden newdir/.git
794 test_expect_success MINGW
'redirect std handles' '
795 GIT_REDIRECT_STDOUT=output.txt git rev-parse --git-dir &&
796 test .git = "$(cat output.txt)" &&
797 test -z "$(GIT_REDIRECT_STDOUT=off git rev-parse --git-dir)" &&
799 GIT_REDIRECT_STDOUT=output.txt \
800 GIT_REDIRECT_STDERR="2>&1" \
801 git rev-parse --git-dir --verify refs/invalid &&
802 grep "^\\.git\$" output.txt &&
803 grep "Needed a single revision" output.txt
806 test_expect_success
'--initial-branch' '
807 git init --initial-branch=hello initial-branch-option &&
808 git -C initial-branch-option symbolic-ref HEAD >actual &&
809 echo refs/heads/hello >expect &&
810 test_cmp expect actual &&
812 : re-initializing should not change the branch name &&
813 git init --initial-branch=ignore initial-branch-option 2>err &&
814 test_grep "ignored --initial-branch" err &&
815 git -C initial-branch-option symbolic-ref HEAD >actual &&
819 test_expect_success
'overridden default initial branch name (config)' '
820 test_config_global init.defaultBranch nmb &&
821 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= git init initial-branch-config &&
822 git -C initial-branch-config symbolic-ref HEAD >actual &&
826 test_expect_success
'advice on unconfigured init.defaultBranch' '
827 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= git -c color.advice=always \
828 init unconfigured-default-branch-name 2>err &&
829 test_decode_color <err >decoded &&
830 test_grep "<YELLOW>hint: " decoded
833 test_expect_success
'advice on unconfigured init.defaultBranch disabled' '
834 test_when_finished "rm -rf no-advice" &&
836 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
837 git -c advice.defaultBranchName=false init no-advice 2>err &&
838 test_grep ! "hint: " err
841 test_expect_success
'overridden default main branch name (env)' '
842 test_config_global init.defaultBranch nmb &&
843 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=env git init main-branch-env &&
844 git -C main-branch-env symbolic-ref HEAD >actual &&
848 test_expect_success
'invalid default branch name' '
849 test_must_fail env GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME="with space" \
850 git init initial-branch-invalid 2>err &&
851 test_grep "invalid branch name" err
854 test_expect_success
'branch -m with the initial branch' '
855 git init rename-initial &&
856 git -C rename-initial branch -m renamed &&
857 echo renamed >expect &&
858 git -C rename-initial symbolic-ref --short HEAD >actual &&
859 test_cmp expect actual &&
861 git -C rename-initial branch -m renamed again &&
862 echo again >expect &&
863 git -C rename-initial symbolic-ref --short HEAD >actual &&
864 test_cmp expect actual
867 test_expect_success
'init with includeIf.onbranch condition' '
868 test_when_finished "rm -rf repo" &&
869 git -c includeIf.onbranch:main.path=nonexistent init repo &&
870 echo $GIT_DEFAULT_REF_FORMAT >expect &&
871 git -C repo rev-parse --show-ref-format >actual &&
872 test_cmp expect actual
875 test_expect_success
'init with includeIf.onbranch condition with existing directory' '
876 test_when_finished "rm -rf repo" &&
878 git -c includeIf.onbranch:nonexistent.path=/does/not/exist init repo &&
879 echo $GIT_DEFAULT_REF_FORMAT >expect &&
880 git -C repo rev-parse --show-ref-format >actual &&
881 test_cmp expect actual
884 test_expect_success
're-init with includeIf.onbranch condition' '
885 test_when_finished "rm -rf repo" &&
887 git -c includeIf.onbranch:nonexistent.path=/does/not/exist init repo &&
888 echo $GIT_DEFAULT_REF_FORMAT >expect &&
889 git -C repo rev-parse --show-ref-format >actual &&
890 test_cmp expect actual
893 test_expect_success
're-init skips non-matching includeIf.onbranch' '
894 test_when_finished "rm -rf repo config" &&
895 cat >config <<-EOF &&
900 git -c includeIf.onbranch:nonexistent.path="$(test-tool path-utils absolute_path config)" init repo
903 test_expect_success
're-init reads matching includeIf.onbranch' '
904 test_when_finished "rm -rf repo config" &&
905 cat >config <<-EOF &&
909 path="$(test-tool path-utils absolute_path config)" &&
910 git init --initial-branch=branch repo &&
911 cat >expect <<-EOF &&
912 fatal: bad config line 1 in file $path
914 test_must_fail git -c includeIf.onbranch:branch.path="$path" init repo 2>err &&