Configure Git with name and email

jgunawancode

Johan G

Posted on May 5, 2022

Configure Git with name and email

To check if Git is configured with your username
git config user.name

To check if Git is configured with your email address
git config user.email

To configure the name that Git will associate with your work
git config --global user.name "Your Name"

To configure the email address in Git
git config --global user.email abc@test.com

💖 đŸ’Ș 🙅 đŸš©
jgunawancode
Johan G

Posted on May 5, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related