initial commit

This commit is contained in:
2026-09-04 14:02:15 -04:00
commit ab192231d8
10 changed files with 310 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
set -e
if [[ ! -z ${GIT_CONFIG_USER_NAME} ]]; then
git config --global user.name "${GIT_CONFIG_USER_NAME}"
fi
if [[ ! -z ${GIT_CONFIG_USER_EMAIL} ]]; then
git config --global user.email "${GIT_CONFIG_USER_EMAIL}"
fi