From 7b44d94e4e62d2c18f68c38dc287345fccc5a278 Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Sun, 13 Sep 2020 13:33:42 +0200 Subject: [PATCH] WIP --- tests/commit.bats | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/commit.bats b/tests/commit.bats index dfae49d..cd6282e 100644 --- a/tests/commit.bats +++ b/tests/commit.bats @@ -10,6 +10,10 @@ setup() { mkdir "${test_repository}" touch "${test_repository}"/{a,b,c}.txt cd "${test_repository}" + + git config --global user.email "test@github.com" + git config --global user.name "Test Suite" + git init --quiet git add . > /dev/null 2>&1 git commit --quiet -m "Init Repo"