I am working with a repo on GitHub and everytime I try to push something, it asks for my GitHub username and password. I don't want it doing that.
I tried the instructions on setting your email in Git, namely set up the Git variables github.user and github.token, but that didn't make any difference.
I don't understand why this is happening.
213 Answers
You need to set-up an ssh-agent against which you only need to authenticate once. See this answer over at SO for a howto.
2Had a similar problem today: I messed things up in my working copy, so I decided to rename the directory and clone my project again from github. But after doing that, I had to enter my password to do any pull/push request, instead of entering the passphrase just once as I used to.
That was because today I used the https protocol to clone the project! To check what protocol you're using just run
git config -land look at the line starting with 'remote.origin.url'.
To switch protocols:
git config remote.origin.url :the_repository_username/your_project.gitthe_repository_username and your_project should be replaced with the appropriate repository name and the owner of that repository. The username will be yours if you own the repository, or the repository owner's username otherwise.
If you are using HTTPS instead of SSH , you can follow this :
Find your remote URL (remote.origin.url) with
git config -lthanks to Sergio Morstabilini
Your remote URL will be like this :
Execute this command :
git config remote.origin.url
I prefer to use HTTPS, I find it easier and more secure than setting up the ssh keys.
Using HTTPS, you can prevent git from asking your username for github remotes with the following:
git config --global url."".insteadOf ""And you can at least reduce the frequency git asks for your password with:
git config --global credential.helper 'cache --timeout=28800'Where 28800 are 8 hours. I use this setup to enter my password only once, when I start my working day.
After that you will have these entries inside your ~/.gitconfig
[url ""] insteadOf =
[credential] helper = cache --timeout=28800Source:
0Also, if you wish to be prompted for your password every-time, but just not your username, then you configure the remote as HTTPS with a username.. Like this..
git config remote.origin.url After this, you will be prompted for your password every time, but not your username.
This is how I prefer it, since I like being forced to type my github password before sharing with the world.
When you set up an ssh key for github, if it's not your default key, you will need to add a section to your ~/.ssh/config
Host *github.com User git IdentityFile ~/.ssh/github_id_rsa If you are on Windows using HTTPS, try the Git Credential Store - it uses the Windows Credential Store to hold your name and password.
Windows Credential Store for Git
This application is a small helper app designed to follow the
git credentials API as defined by the Git Documentation.
Installation
1. Download the git-credential-winstore.exe application
2. Run it! If you have GIT in your PATH, it should just work.Then the next time you enter your name and password it will remember them for you.
1use SSH
To prevent GitHub asking for the password while pushing, ideally you should use SSH (:...) instead of HTTPS URL () and add your SSH key to your GitHub account. See: Which remote URL should I use?
a credential helper
Otherwise if you really need to use HTTPS, to cache your GitHub password in Git, you should use a credential helper to tell Git to remember your GitHub username and password every time it talks to GitHub.
- Mac:
git config --global credential.helper osxkeychain(osxkeychain helperis required), - Windows:
git config --global credential.helper wincred - Linux and other:
git config --global credential.helper cache
.netrc
Another method is to use configure your user/password in ~/.netrc (_netrc on Windows), e.g.
machine github.com
login USERNAME
password PASSWORDOAuth
Use OAuth token (Personal API token) to push the changes, e.g.
git push Related:
- Is there a way to skip password typing when using https:// on GitHub?
- How to store your GitHub https password on Linux in a terminal keychain?
- Configure Git clients, like GitHub for Windows, to not ask for authentication
Things are a little different if you're using 2-factor auth as I am. Since I didn't find a good answer elsewhere, I'll stick one here so that maybe I can find it later.
If you're using 2-factor auth, then specifying username/password won't event work - you get access denied. But you can use an application access token and use git's credential helper to cache that for you. Here are the pertinent links:
- Setting up the command-line to work with 2-factor auth (search for section titled "How does it work for command-line Git?")
- Credential caching
And I don't remember where I saw this but when you're asked for your Username - that's where you stick the application access token. Then leave the password blank. Worked on my mac.
Also if you are using Windows, you can use:
$ git config --global credential.helper wincredyou just have to sign in one more time and then git will remember.
Asking the username is annoying for me, but asking for a password is nice since it ensures you really want to go public with your changes...
So I just add this to my ".gitconfig"
[url ""] insteadOf = This change has the benefit that it works for all repositories without having to change the remote URL of the repositories.
Use Git Credential Manager for Windows, if you're on Windows.
This project includes:
- Secure password storage in the Windows Credential Store
- Multi-factor authentication support for Visual Studio Team Services
- Two-factor authentication support for GitHub
- Personal Access Token generation and usage support for Visual Studio Team Services and GitHub
- Non-interactive mode support for Visual Studio Team Services backed by Azure Directory
- Kerberos authentication for Team Foundation Server
- Optional settings for build agent optimization
Simply download the latest version and install it.
How to use
You don't. It magically works when credentials are needed.
This worked for me.
Execute the command with below syntax.
git config remote.origin.url url>>