How to change git username and password on PC
This post is about how to change git username and password locally and globally in your computer.
Here we will learn how to change username and password locally and globally on git in our computer.
While working with github, if you want to change your github account to commit your future changes, then you can change the account credentials locally only for specific repo or globally for all the repos in your computer.
To change git user name and email, we have to open the terminal and change the user name using git config user.name command and email using git config user.email command.
The git config command helps us to set configuration values on global or local projects.
Let's see how to do it locally and globally in the examples below.
Change Git username and username on specific local repo
Follow the steps below to change the username and password:
Step 1 : Navigate to the local repo you want to make changes in and open your terminal.
Step 2 : First execute git config --list to check your signed-in username and email in that repo.
Step 3 : Now to change your credential in that specific local repo , type:
git config user.name "User Name" git config user.email "youremail@gmail.com"
Now when you try to push any changes in the specific repo, a prompt will ask for the password which will be saved for that repo.
Change git credentials globally in your computer.
The global value means changing it for all the local repos in your PC.
To change it globally, we just need to add the --global flag when changing it.
git config --global user.name "User Name" git config --global user.email "youremail@gmail.com"
Related Topics:
How To Save Username, Email And Password Globally In Github?
How To Check GitHub Email Address And Username From Terminal?
Related Posts
Fix 'failed to push some refs to' Git Errors
If you have encountered the "error: failed to push refs to" error in git, then follow this solution provided in this article to easily fix the error.
[Fixed] GitHub "fatal: remote origin already exists" error
Find out to fix "fatal: remote origin already exits" github error while working with remote git repository.
Solved "No such remote origin" Git Error Fatal
Short article on how do I fix remote origin already exists git error faced when trying to push to remote origin in Github and BitBucket.
How to remove node_modules from github or bitbucket
Step by step process to remove node_modules from github or bitbucket after the folder is added to the repository with the help of gitignore file.
