How to Configure Git Username and Email?

By Hardik Savani November 5, 2023 Category : Git

When you first time create your git repo or clone project from git repo then you must have to set username and email. You can also set global username email and also you can set per repository username email. So, in this post in bellow command through you can set global git username and email.

Global Set:

git config --global user.name "Haresh Patel"

git config --global user.email "itsolutionstuff@gmail.com"

git config --list

You can also set username and email per project repo using bellow command. First you have to go on your project root directory.

Per Repo Set:

git config user.name "Haresh Patel"

git config user.email "itsolutionstuff@gmail.com"

git config --list

I hope it can help you...

Tags :
Shares