Files
triton/scripts/amd/git_config_user.sh
Michael Melesse fa4d0fd1ef add scripts
2022-10-17 17:28:48 +00:00

7 lines
246 B
Bash

# use --global flag if you want to set it for whole machine
git config user.name "Michael Melesse"
git config user.email "micmelesse@gmail.com"
# unset with
# git config --global --unset-all user.name
# git config --global --unset-all user.email