From f6b1cee2969ed36f158f3bdcbf435061b9514e7e Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 9 Jun 2024 08:40:07 -0400 Subject: Identify local repo user --- tests/test_utils.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/test_utils.c') diff --git a/tests/test_utils.c b/tests/test_utils.c index cada76d..94b4585 100644 --- a/tests/test_utils.c +++ b/tests/test_utils.c @@ -199,6 +199,8 @@ void test_git_clone_and_describe() { // interact with it touch("README.md"); + system("git config user.name omc"); + system("git config user.email null@null.null"); system("git add README.md"); system("git commit --no-gpg-sign -m Test"); system("git push -u origin"); -- cgit