# Global configuration
git config --global user.name "FIRST_NAME LAST_NAME"
git config --global user.email "MY_NAME@example.comgit config user.name "FIRST_NAME LAST_NAME"
# Repository specific
git config user.email "MY_NAME@example.com"
git config user.name "FIRST_NAME LAST_NAME"
# Check your configuration
cat .git/config"