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

I've been using Git for a while now, but the constant requests for a password are starting to drive me up the wall.

I'm using OSX and Github, and I set up Git and my SSH keys as instructed by GitHub's Set Up Git page . I've also added the github SSH key to my Mac OSX keychain, as mentioned on GitHub's SSH key passphrases page . My public key is registered with Git.

Nevertheless, every time I try to git pull, I have to enter my username and password. Is there something other than an SSH key that I need to set up for this?

share|improve this question
1  
Silly question, but have you verified that the SSH key works when simply using ssh to the machine with git? – Kurt Stutsman Oct 14 '11 at 20:27
2  
You mean something like ssh -T git@github.com ? Yeah, that works just fine (if a little slow). – Catherine Oct 14 '11 at 20:34

5 Answers

up vote 199 down vote accepted

I think you may have the wrong git repo url. Make sure you're using the SSH one:

ssh://git@github.com/username/repo.git

And NOT the https or git one:

https://github.com/username/repo.git
git://github.com/username/repo.git

You can now validate with just the SSH Key instead of the username and password.

[Edit:] If Git complains that 'origin' has already been added, open the .config file and edit the url = "..." part after [remote origin]

share|improve this answer
4  
This may be it. When I call git remote -v I get: origin github.com/Foo/Bar.git (fetch) origin github.com/Foo/Bar.git (push) whereas to work with SSH it seems that it should be: origin git@github.com:Foo/Bar.git (fetch) origin git@github.com:Foo/Bar.git (push) This may be because I originally checked out my project using GitHub's Mac application (mac.github.com). Any idea how I can fix it? – Catherine Oct 14 '11 at 22:38
7  
Either fix the url in the .git/config file, use git-remote to fix it, or delete your local repo and clone it again with the correct URL. – static_rtti Oct 14 '11 at 22:49
2  
It worked! Huzzah. Thanks a ton. – Catherine Oct 14 '11 at 23:03
16  
Just to spell this out (as I needed it): open .git/config and in the [remote "origin"] section set url = ssh://git@github.com/username/Repo.git. That worked for me. – Greg K Jul 1 '12 at 23:22
1  
Odd, @GregK's solution didn't work for me, but url = git@github.com:organization/Repo.git did work. +1 for leading me down the right path though! Success! – jmort253 Nov 19 '12 at 21:52
show 4 more comments

Have you tried this in Terminal?

git config --global credential.helper osxkeychain

It enables git to use Keychain.app to store username and password.

share|improve this answer
4  
This is by far the best way to do this since the Github application for OSX (maybe Windows as well) uses the https path for git repos by default. There is also a good reason for using https rather than ssh/git since many corporate networks only allow traffic on port 80 and 443 for security reasons. – codehugger Sep 18 '12 at 2:11
1  
You need git 1.7.10 or newer to use the credential helper. – jbandi Dec 27 '12 at 23:34
+1 for keychain.app solution. This is GREAT for me because my employer's git server only supports http served via apache and they strongly discourage using the .netrc file method which puts your password in plaintext. – Josh Mar 1 at 21:12
1  
Note, I got the error 'credential-osxkeychain' is not a git command. as I didn't have the credential helper installed. I followed the instructions here to install it: help.github.com/articles/set-up-git#password-caching – Hugh Mar 11 at 13:00
1  
Yes you need to install git with the credential helper. Depending on how you install it (homebrew, macports, source, etc.) you might need to pass some compile flags. For macports, install it with port install git-core +credential_osxkeychain – orkoden Mar 20 at 17:12

I figure you fixed your problem, but I don't see the solution here that helped me, so here it is.

Type in terminal:

echo "" > ~/.ssh/known_hosts

That will empty your known_hosts file, and you'll have to add every host you used and have connected to, but it solved the problem.

share|improve this answer
cat /dev/null > ~/.ssh/known_hosts will do the same. – the Tin Man Sep 28 '12 at 1:03
> ~/.ssh/known_hosts is even shorter :) – Collin Allen Oct 17 '12 at 15:25
rm ~/.ssh/known_hosts should do the job too. I would advise against this though. – orkoden Mar 20 at 17:13

Use this: Replace github.com with the appropriate hostname

git remote set-url origin git@github.com:user/repo.git
share|improve this answer

If I am right ,you did push your first repo with url without SSH,and when you setup SSH ,you push url did not change ~ so ,you need to change it by

git remote set-url origin git@github.com:user/repo.git

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.