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

I'm using git on a new git linux computer. When I do git push, it me asks for user/password.

I've setup git properly, and in fact cloning the repo from github into a new folder works perfectly (using my public key, not the readonly copy). When I try to push from a previous clone I made to the same repo I get prompted for a user/pass.

Of course sshing into git@github.com works, and I made sure my public key is configured in github. Any ideas how to continue debugging?

share|improve this question

4 Answers

up vote 31 down vote accepted

What do you mean by previous repo? Check the url of the origin from the previous repo's .git/config file. If you had cloned using http, it will ask for user/pass.

share|improve this answer
1  
You're right, the problem was an HTTP URL. By "a previous repo" I meant a previous clone of the same repo. – ripper234 Apr 28 '11 at 5:02

this occurs because you did

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

instead of

    git clone git@github.com:username/repo.git
share|improve this answer

Try the following:

git remote set-url origin [your git url, such as git@github.com:.../project.git]

share|improve this answer
After I run this I get "Enter passphrase for key '/u/.ssh/id_rsa':" which I know the password, but is there a way for it to stop asking this based on a key file being in place? – JustBob Jun 27 '12 at 15:00

for mac If you have git 1.7.10+ it needs to use credential-osxkeychain for password caching. Here is a nice explanation:

https://help.github.com/articles/set-up-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.