Files
bottom/scripts/ci/configure_git.sh
T
2025-12-24 23:47:39 -05:00

7 lines
183 B
Bash

#!/bin/bash
git config --global user.name ${GIT_USER}
git config --global user.email ${GIT_EMAIL}
echo Name: $(git config --get user.name)
echo Email: $(git config --get user.email)