From b402e18d06c789c2ebe6404d33c05d48390d0905 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Mon, 14 Jul 2025 10:30:57 -0400 Subject: [PATCH] test(git-push): add git config commands Signed-off-by: Xe Iaso --- test/git-push/test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/git-push/test.sh b/test/git-push/test.sh index cfc16df9..ed4a3e8d 100755 --- a/test/git-push/test.sh +++ b/test/git-push/test.sh @@ -28,6 +28,8 @@ sleep 2 git init && \ touch README && \ git add . && \ + git config user.name "Anubis CI" && \ + git config user.email "social+anubis-ci@techaro.lol" && \ git commit -sm "initial commit" && \ git push http://localhost:3000/git/foo.git )