kymbrik
4/26/2019 - 10:55 AM

Setting up email locally/globally

Globally

git config --global user.email "email@example.com"
# Confirm that you have set the email address correctly in Git:
git config --global user.email

Locally

git config user.email "email@example.com"
# Confirm that you have set the email address correctly in Git:
git config user.email