I recently switched to syncing my repos to https:// in github (due to firewall issues) and it asks for a password every time. It used to be that I had an ssh cert and it was enough. Is there a way to bypass password in my case (using http/https)?
|
With git version 1.7.9 and laterSince git 1.7.9 (released in late January 2012), there is a neat mechanism in git to avoid having to type your password all the time for HTTP / HTTPS, called credential helpers. (Thanks to dazonic for pointing out this new feature in the comments below.) With git 1.7.9 or later, you can just do:
... which tells git to keep your password cached in memory for (by default) 15 minutes. You can set a longer timeout with:
(That example is suggested in the GitHub help page for Linux.) GitHub's help also suggests that if you're on Mac OS and used homebrew to install git, you can use the native Mac OS keystore with:
... and there is a similar helper for Windows, called git-credential-winstore.exe. With git versions before 1.7.9With versions of git before 1.7.9, this more secure option is not available, and you'll need to change the URL that your
... in other words with
Make sure that you use With any git version (well, since v0.99)An alternative approach is to put your username and password in your
... replacing
Note that on Windows, this file should be called |
|||||||||||||
|
|
You can also have Git store your credentials permanently using the following:
Note: While this is convenient, Git will store your credentials in clear text in a local file (.git-credentials) under your "home" directory ("cd" should take you there). If you don't like this, delete this file and switch to using the cache option. If you want Git to resume to asking you for credentials every time it needs to connect to the remote repository, you can run this command:
|
|||||||
|
|
If you don't want to store your password in plaintext like Mark said, you can use a different github URL for fetching than you do for pushing. In your config file, under
It will still ask for a password when you push, but not when you fetch, at least for open source projects. |
|||
|
|
|
I'm probably being a bit slow, but it wasn't immediately obvious to me that I needed to download the helper first! I found the credential.helper download at Atlassian's Permanently authenticating with Git repositories, hope it helps. Quote: Follow these steps if you want to use Git with credential caching on OSX: Download the binary git-credential-osxkeychain. Run the command below to ensure the binary is executable:
Put it in the directory /usr/local/bin. Run the command below:
|
||||
|
|
|
On a GNU/Linux setup, a ~/.netrc works quite well too
It might depend on which network libraries git is using for https transport. |
|||||
|
|
You can use credential helpers. Try this -
where xx is the number of seconds. |
|||
|
|
|
Yes, follow the instructions at https://help.github.com/articles/git-over-https-using-oauth-token |
|||
|
|
|
On Mac OS X I had some issues getting the official Keychain credential helper up and running, but using Samuel Kadpolh's git-password program instead did the trick: http://samuel.kadolph.com/2011/03/store-your-git-https-passwords-in-your-os-x-keychain/ |
|||
|
|
