initial commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user