Skip to content
Snippets Groups Projects
Commit c3f0080f authored by Florian Deuerlein's avatar Florian Deuerlein
Browse files

user setup script added

parent 69040a68
No related branches found
No related tags found
No related merge requests found
# user setup script
# set git config
if [ ! "$(git config --get user.name)" ]
then
git config --global --add user.name "${JUPYTERHUB_USER}"
fi
if [ ! "$(git config --get user.email)" ]
then
git config --global --add user.email "${JUPYTERHUB_USER_EMAIL}"
fi
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment