commit 0b2899f84683eeb92e157053cfbb0d3a59dff4a9 from: Stefan Sperling date: Sun Aug 18 09:26:15 2019 UTC attribute commits created with git(1) in test suite to Flan Hacker commit - 3d69ad8dfb2fedd8d5abee1365505c2479e00180 commit + 0b2899f84683eeb92e157053cfbb0d3a59dff4a9 blob - 0c8a19f4d7d1d2f8ab84f9b60b185526128a615b blob + 5c3679ee79c0ba85d613cf0d46cf0fae5ffbe290 --- regress/cmdline/common.sh +++ regress/cmdline/common.sh @@ -14,7 +14,11 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -export GOT_AUTHOR="Flan Hacker " +export GIT_AUTHOR_NAME="Flan Hacker" +export GIT_AUTHOR_EMAIL="flan_hacker@openbsd.org" +export GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME" +export GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL" +export GOT_AUTHOR="$GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL>" export GOT_AUTHOR_8="flan_hac" export GOT_LOG_DEFAULT_LIMIT=0 @@ -22,14 +26,14 @@ export MALLOC_OPTIONS=S function git_init { - git init -q "$@" + git init -q "$1" } function git_commit { local repo="$1" shift - (cd $repo && git commit -q -a "$@") + (cd $repo && git commit --author="$GOT_AUTHOR" -q -a "$@") } function git_rm