X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft0001-init.sh;h=7c0a698b92696ff2bbb91e65e0a42e87f9163a1d;hb=127f04522292fc62152762405c92d6acca4dbcb5;hp=675773479a8c6a1791ae01eb47654f4433c30ee3;hpb=6b6f5d4664c9088636418653a61f600b5e3a9ea4;p=git.git diff --git a/t/t0001-init.sh b/t/t0001-init.sh index 675773479..7c0a698b9 100755 --- a/t/t0001-init.sh +++ b/t/t0001-init.sh @@ -310,4 +310,18 @@ test_expect_success POSIXPERM 'init notices EPERM' ' ) ' +test_expect_success 'init creates a new bare directory with global --bare' ' + rm -rf newdir && + git --bare init newdir && + test -d newdir/refs +' + +test_expect_success 'init prefers command line to GIT_DIR' ' + rm -rf newdir && + mkdir otherdir && + GIT_DIR=otherdir git --bare init newdir && + test -d newdir/refs && + ! test -d otherdir/refs +' + test_done