How to save username, email and password globally in Github?

In this article, we will see how to save GitHub username, email, and password globally on your computer.

While working with github it is better to save your username and password on your computer so that you don’t have to type your github username and password every time you have to pull or push your changes in git.

So what saving globally means?

The global values mean the value will be applied to a particular user of an operating system. This information is stored in the ~/.gitconfig file in our home directory.

Save GitHub username and password globally

Follow the steps below :

To save the Git username globally, run the git command:

git config --global user.name "Your User Name"

To save the Git email address globally, run the git command:

git config --global user.email "Your Github Email"

Now all your future commits will be referred to this information.

Once you have saved your username and email, the next time you push your commit, it will show you a password prompt.

Enter the password and it will be saved.


Related Topics:

How To Check GitHub Email Address And Username From Terminal?

How to change git username and password on PC

Open Github Repository Directly In Vscode In Browser Online

How to add empty folder/directory in Git

Resolve- Refusing To Merge Unrelated Histories Git Error

How to check Git email address and username in terminal?

Scroll to Top