I am trying to clone a git repo that I forked in my GitHub Repository.It's a rails app. I want to clone it on my local git so that I can push it onto heroku. I generated a set of rsa keys and copied it onto my GitHUb public keys. When I try to git clone "public url" , It says public key denied. I tried an ssh git@github.com to verify my key, it also says public key denied. I've tried several different things to make it work but it still hasn't. I tried to change permissions to 600 and 700 on my .ssh folder. I also tried adding a dsa key because the rsa won't work. please help me. Thanks. :)

I'm on Vista btw.

link|improve this question

67% accept rate
feedback

7 Answers

Answering a very old thread, here, but I'm on Cygwin and just had to do this to start work with my newly created site on phpfog.com

First, I ran this in cygwin:

exec ssh-agent bash
ssh-add ~/.ssh/private-key-name

I then received:

Identity added: /home/scott/.ssh/private-key-name (/home/scott/.ssh/private-key-name)
link|improve this answer
This fixed some very annoying git clone issues for me. Why must SSH/SSL identity management be so perpetually obtuse? – aroth Apr 13 at 1:56
feedback

After a lot of googling, I found this answer. I had to start the bash engine before i can add the keys. I cloned my app from github to my local server as well.

link|improve this answer
feedback

If you are on Linux, you can try keychain tool to manage SSH agent.

link|improve this answer
feedback

Can you try adding the private key using ssh-add?

link|improve this answer
I tried it and it said Could not open a connection to your authentication agent. – KT. Dec 1 '09 at 3:16
feedback

I had the same problem. Check the contents of your public key file: 1. it must start with ssh-rsa 2. it must be ONE line 3. the format is like this: ssh-rsa manysymbolshere== somekeyname

if you generated the key using puttygen in Windows - DO NOT save public key to a file on disk - it will have comments, which you must delete before copying to a server. Copy the public key to clipboard and then save to a *.pub file using notepad.

link|improve this answer
feedback

HTTPS github access looks to be a very similar question. One solution I took from from those answers to quickly clone a git repository when I don't have the keys set up is to:

export GIT_SSL_NO_VERIFY=true

then clone away.

link|improve this answer
feedback

Consider using ForwardAgent option.

Try add:

Host * 
    ForwardAgent yes

to /etc/ssh/ssh_config on local machine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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