Anybody seen this error and know what to do?
I\'m using the terminal, I\'m in the root, the GitHub repository exists and I don\'t know what to do now.
Make sure ssh-add -l
shows a fingerprint of an SSH key that's present in the list of SSH keys in your Github account.
If the output is empty, but you know you have a private SSH key that works with your github account, run ssh-add
on this key (found in ~/.ssh
. It's named id_rsa
by default, so you'll likely run ssh-add id_rsa
).
Else, follow these instructions to generate an SSH key pair .