码云(The authenticity of host ‘gitee.com (180.97.125.228)‘ can‘t be established)

拉取远程仓库到本地错误The authenticity of host ‘github.com (13.229.188.59)’ can’t be established.
1、个人在码云(git一样)上面创建了仓库,通过本地的git拉取远程仓库到本地报错信息如下:
码云(The authenticity of host ‘gitee.com (180.97.125.228)‘ can‘t be established)_第1张图片
这是因为Git使用SSH连接,而SSH第一次连接需要验证GitHub服务器的Key。确认GitHub的Key的指纹信息是否真的来自GitHub的服务器。解决办法。其实就是在本地生成key配置到github服务器。这样子接收过来就gitHub服务器了。

2、使用命令: ls -al ~/.ssh
在这里插入图片描述
3、使用命令: ssh-keygen -t rsa -C “github用户名(名字或者邮箱)”,按三次回车
码云(The authenticity of host ‘gitee.com (180.97.125.228)‘ can‘t be established)_第2张图片
4、查看生成的key:cat ~/.ssh/id_rsa.pub
码云(The authenticity of host ‘gitee.com (180.97.125.228)‘ can‘t be established)_第3张图片
5、登陆码云,点击头像-settings-new SSH,复制新生成的SSH配置到服务器,记住拷贝是4步骤下面的秘钥信息以ssh-rsa开始邮箱结束的。
码云(The authenticity of host ‘gitee.com (180.97.125.228)‘ can‘t be established)_第4张图片
6、正常克隆跟同步代码到github。完美解决

参考:https://blog.csdn.net/Owen_goodman/article/details/112986336
转发请备注:https://blog.csdn.net/Owen_goodman/article/details/112986336

你可能感兴趣的:(Python,git,github)