From 7ea9ed94f6c35d40bed5b4d7168f58645fbeba6e Mon Sep 17 00:00:00 2001
From: "Luke T. Shumaker" <lukeshu@lukeshu.com>
Date: Sat, 14 Oct 2023 17:44:40 -0600
Subject: Have the exact commits be reproducible

---
 bin/gitify | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

(limited to 'bin')

diff --git a/bin/gitify b/bin/gitify
index 2c73bcd..1e5d43d 100755
--- a/bin/gitify
+++ b/bin/gitify
@@ -74,10 +74,26 @@ main() {
 				waurl="http://web.archive.org/web/$(murl2url "${listingdir##*/content-dir/}/")"
 				msg="$waurl"
 			fi
-			gitdate="$(sed -r 's/(....)(..)(..)(..)(..)(..)/\1-\2-\3T\4:\5:\6/' <<<"$time")"
+
+			HACK_TZ=-0500
+			if [[ "$branch" == BETA/CVTUTF-1-4 || "$branch" == ALPHA/CVTUTF-1-5-draft ]]; then
+				HACK_TZ=-0400
+			fi
+			HACK_NAME='Luke Shumaker'
+			HACK_EMAIL='lukeshu@lukeshu.com'
+
+			gitdate="$(sed -r 's/(....)(..)(..)(..)(..)(..)/\1-\2-\3T\4:\5:\6 '"$HACK_TZ"'/' <<<"$time")"
+
 			git add .
+
 			export GIT_AUTHOR_DATE=$gitdate
+			export GIT_AUTHOR_NAME=$HACK_NAME
+			export GIT_AUTHOR_EMAIL=$HACK_EMAIL
+
 			export GIT_COMMITTER_DATE=$gitdate
+			export GIT_COMMITTER_NAME=$HACK_NAME
+			export GIT_COMMITTER_EMAIL=$HACK_EMAIL
+
 			git commit --allow-empty -m "$msg"
 			if [[ "$branch" != *.OLD ]]; then
 				lastbranch="$branch"
-- 
cgit v1.2.3-54-g00ecf