diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-09 08:40:07 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-09 08:40:07 -0400 |
commit | f6b1cee2969ed36f158f3bdcbf435061b9514e7e (patch) | |
tree | dbb6f388d32de9daa31ae0842e421ecca76957ca | |
parent | c0ffbd5101e8069e7c5459fa91bd78111e512830 (diff) | |
download | stasis-f6b1cee2969ed36f158f3bdcbf435061b9514e7e.tar.gz |
Identify local repo user
-rw-r--r-- | tests/test_utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
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"); |