美文网首页
Permission denied (publickey)

Permission denied (publickey)

作者: 114105lijia | 来源:发表于2019-06-16 17:41 被阅读0次

我在 clone项目的时候碰到了这个问题:

git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

首先描述一下我的情景:我是在自己电脑上上传项目到github上的,在公司电脑上想拉取代码,就把自己电脑上的公钥和私钥发到公司电脑上,放在~/.ssh/目录下,然后克隆项目时就出现了上面问题。

我的解决方法:
首先用下面命令查看了下本地私钥

ssh-add -l

发觉并没有看到任何记录,然后就添加了生成的私钥:

ssh-add ~/.ssh/id_rsa_github

最后在clone时就没问题了。

相关文章

网友评论

      本文标题:Permission denied (publickey)

      本文链接:https://www.haomeiwen.com/subject/mvbgfctx.html