From 3ba11065e408e91315e1829a19741b79fd0f0235 Mon Sep 17 00:00:00 2001 From: Dennis Gray Date: Tue, 10 Oct 2023 18:09:10 -0700 Subject: [PATCH] test --- scripts/create_test_repo.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/create_test_repo.sh b/scripts/create_test_repo.sh index cb3520f..acfed31 100755 --- a/scripts/create_test_repo.sh +++ b/scripts/create_test_repo.sh @@ -9,6 +9,9 @@ cd testdata/TestRepo || exit # Step 3: Initialize a Git repository git init +git config --global user.email "you@example.com" +git config --global user.name "Your Name" + # Step 4: Create a file called file.txt with "hello world" in it echo "hello world" > file.txt