Then, stonean blog suggests (as does Marcio Garcia):
$ cd ~/.ssh$ ssh-add id_rsaAral Balkan adds: create a config file
The solution was to create a config file under ~/.ssh/ as outlined at the bottom of the OS X section of this page.
Here's the file I added, as per the instructions on the page, and my pushes started working again:
Host github.comIdentityFile ~/.ssh/id_rsaYou can also post the result of
ssh -v git@github.comto have more information as to why GitHub ssh connection rejects you.
Check also you did enter correctly your public key (it needs to end with '==').
Do not paste your private key, but your public one. A public key would look something like:
ssh-rsa AAAAB3<big string here>== tek...@gmail.com(Note: did you use a passphrase for your ssh keys ? It would be easier without a passphrase)
Check also the url used when pushing (git@github.com/..., not git://github.com/...)
Check that you do have a SSH Agent to use and cache your key.
Try this:
$ ssh -i path/to/public/key git@github.comIf that works, then it means your key is not being sent to GitHub by your ssh client.
