So, I just spent ~ 4 hours trying to get the repo to work under the SSH URL on windows, I'm almost there, but I ran into this strange problem.
I can use
git push origin master
git fetch origin master
ssh git@github.
and all local teams. However, when I try to do git pull, I get:
-bash-4.1$ git pull
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
-bash-4.1$
I have id_rsa, and id_rsa.pubin the section %HOME%/.ssh, and the public key is added to my account GitHub. My git url is also correct.
EDIT
-bash-4.1$ git --version
git version 1.8.5.2.msysgit.0
source
share