How To Change Your GIT Name and Email Address Globally and Per Repository
erics, Posted June 17th, 2021 at 12:45:23pm
To update your git user name and email address for all repos:
1 2 |
git config --global user.name "Your Name" git config --global user.email "yourName@theDomain.com" |
To update your git user name and email address for a specific repo:
1 2 3 |
cd repo git config user.name "Your Name" git config user.email "yourName@theDomain.com" |
Leave Your Comment
All fields marked with "*" are required.