Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)?

share|improve this question

8 Answers

up vote 216 down vote accepted

With git version 1.7.9 and later

Since 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:

git config --global credential.helper cache

... which tells git to keep your password cached in memory for (by default) 15 minutes. You can set a longer timeout with:

git config credential.helper 'cache --timeout=3600'

(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:

git config --global credential.helper osxkeychain

... and there is a similar helper for Windows, called git-credential-winstore.exe.

With git versions before 1.7.9

With versions of git before 1.7.9, this more secure option is not available, and you'll need to change the URL that your origin remote uses to include the password in this fashion:

https://you:password@github.com/you/example.git

... in other words with :password after the username and before the @. You can set a new URL for your origin remote with:

git config remote.origin.url https://you:password@github.com/you/example.git

Make sure that you use https and you should be aware that if you do this, your github password will be stored in plaintext in your .git directory, which is obviously undesirable.

With any git version (well, since v0.99)

An alternative approach is to put your username and password in your ~/.netrc file, although, as with keeping the password in the remote URL, this means that your password will be stored on the disk in plain text and is thus less secure and not recommended. However, if you want to take this approach, add the following line to your ~/.netrc:

machine <hostname> login <username> password <password>

... replacing <hostname> with the server's hostname, and <username> and <password> with your username and password. Also remember to set restrictive file system permissions on that file:

chmod 600 ~/.netrc

Note that on Windows, this file should be called _netrc, and you may need to define the %HOME% environment variable - for more details see:

share|improve this answer
5  
Don't store your password in plain text. As of Git 1.7.9 you can use credential helpers. git config --global credential.helper osxkeychain on OS X. For other OS see help.github.com/articles/set-up-git – dazonic Jun 22 '12 at 7:29
1  
@dazonic: thanks for pointing out that new feature - I've updated my answer to suggest that. – Mark Longair Jun 22 '12 at 8:40
1  
FWIW, the osx keychain stuff is part of base GIT source code, it's not an exclusive component of Brew or MacPorts or whatever the flavor of the month is. And you don't even need to build git from scratch - just cd contrib/credential/osxkeychain/ and run make. – synthesizerpatel Apr 9 at 14:04

You can also have Git store your credentials permanently using the following:

git config credential.helper store

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:

git config --unset credential.helper

share|improve this answer
1  
On Windows, you can download a helper utility configures things to store an encrypted version of your GIT password in the Windows Creditial Store, see confluence.atlassian.com/display/STASH/… – Gravitas Jan 22 at 18:39
I found that I had to specify --global or it would try to store the settings in the current repository: git config --global credential.helper store – Brian Gordon May 15 at 3:25

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 [remote "origin"]:

url = git://github.com/you/projectName.git
pushurl = git@github.com:you/projectName.git

It will still ask for a password when you push, but not when you fetch, at least for open source projects.

share|improve this answer

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:

chmod a+x git-credential-osxkeychain

Put it in the directory /usr/local/bin.

Run the command below:

git config --global credential.helper osxkeychain
share|improve this answer

On a GNU/Linux setup, a ~/.netrc works quite well too

$ cat ~/.netrc
machine github.com login lot105 password howsyafather

It might depend on which network libraries git is using for https transport.

share|improve this answer
1  
Make sure to also chmod 0600 ~/.netrc. – poolie May 31 at 3:58

You can use credential helpers. Try this -

git config --global credential.helper 'cache --timeout=xx'

where xx is the number of seconds.

share|improve this answer

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/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.