git 时 出现 Permission denied (publickey).
Posted 654321cc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 时 出现 Permission denied (publickey).相关的知识,希望对你有一定的参考价值。
https://blog.csdn.net/awp0011/article/details/73368481
第一次使用github.com
在本地 执行 git clone git@github.com:xxxxx/xxxxx.git
异常信息:
Permission denied (publickey).
fatal: Could not read from remote repository.
原因是SSH 登录时没有加密所需的秘钥
所以 我们 需要生成密码
ssh-keygen -t rsa
1
在~/.ssh/ 有三个文件
id_rsa
id_rsa.pub
known_hosts
将 id_rsa.pub 内容复制到 github的 https://github.com/settings/keys
add SSH key
然后你再 git clone
————————————————
以上是关于git 时 出现 Permission denied (publickey).的主要内容,如果未能解决你的问题,请参考以下文章