我似乎无法通过ssh密钥身份验证从上游获取更改。
我可以添加回购:
$ git remote add upstream git@github.com:user/repo.git
我的ssh文件夹的内容似乎没问题:
$ ls ~/.ssh
authorized_keys id_rsa id_rsa.pub known_hosts
登录完美无缺:
$ ssh -T git@github.com
Hi user/repo! You've successfully authenticated, but GitHub does not provide shell access.
但是从上游获取不起作用:
$ git fetch upstream
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
有什么想法吗?
答案 0 :(得分:7)
如果你没有“拥有”遥控器,你应该只使用只读链接
git remote add upstream git://github.com/antirez/redis