知识&技术&梦想 知识&技术&梦想

Warning: Permanently added the RSA host key for IP address '52.74.223.119' to the list of known hosts.

新配置的电脑, 在打开github的时候, 提示警告信息:
Warning: Permanently added the RSA host key for IP address '52.74.223.119' to the list of known hosts.
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的项目问题件。 你首先需要创建一个publickKey。 然后才能做接下来的操作。 如何创建一个新的publickey呢? 1. 打开命令行,或者git的命令行。 2. 复制下面的代码, 并把里面的email替换成你在github中注册的邮箱地址。
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
3. 然后, 它会使用你上面的邮箱生成对应的public/private的密钥信息。
Generating public/private rsa key pair.
4. 保存你生成密钥的本地路径, 直接回车就好了。 如果已经存在,请不要使用这个方式进行创建, 查看已经存在的id_rsa就可以了。
Enter file in which to save the key (/c/Users/QiMaio/.ssh/id_rsa)
查看并验证你的生成: 查看生成的id_rsa.pub 把里面的内容复制到github的ssh管理中就可以了。 然后使用命令 ssh -T git@github.com 测试你使用已经设置成功。
Hi <你的用户名>! You've successfully authenticated, but GitHub does not provide shell access.
大纲