This commit is contained in:
Stefan Zweifel 2020-09-13 13:33:42 +02:00
parent bc65330a0e
commit 7b44d94e4e
1 changed files with 4 additions and 0 deletions

View File

@ -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"