Merge branch 'ap/t2015-style-update'

Test clean-up.

* ap/t2015-style-update:
  t2015-checkout-unborn.sh: changes the style for cd
This commit is contained in:
Junio C Hamano
2023-02-27 10:08:56 -08:00

View File

@ -9,11 +9,12 @@ TEST_PASSES_SANITIZE_LEAK=true
test_expect_success 'setup' ' test_expect_success 'setup' '
mkdir parent && mkdir parent &&
(cd parent && (
git init && cd parent &&
echo content >file && git init &&
git add file && echo content >file &&
git commit -m base git add file &&
git commit -m base
) && ) &&
git fetch parent main:origin git fetch parent main:origin
' '