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