ItSolutionStuff.com

How to Configure Git Username and Email?

By Hardik Savani • November 5, 2023
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: Git
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Remove File from Git Commit Before Push?

Read Now →

How to Delete a Branch form GitHub Repository?

Read Now →

How to Rename Branch Name in Git Command?

Read Now →

How to Switch Branch using Git Command?

Read Now →

How to Create a New Branch on GitHub?

Read Now →

How to Clone Github Repository using Command Line?

Read Now →

How to Ignore Wildcard Files Name in Git using Gitignore?

Read Now →

How to Ignore Folder in Git using Gitignore?

Read Now →

How to Ignore File in Git using Gitignore?

Read Now →

How to Git Ignore Some Files Locally?

Read Now →

Git - How to Find a Deleted File in Commit History?

Read Now →

How to Git Force Pull from Remote Branch?

Read Now →

Git Remove Last Commit from Local Example

Read Now →