Git上传文件时报错:The authenticity of host xxx can‘t be established.

一、问题描述

当使用push命令把本地文件推到远端时,报错:

Git上传文件时报错:The authenticity of host xxx can‘t be established._第1张图片

二、问题解决

1、生成密钥时,在.ssh文件夹中只有2个密钥文件,缺少known_hosts文件:

解决方法:先删除根目录下.ssh所有文件,重新生成key,出现此提示时输入yes,不然不会生成known_hosts文件

Git上传文件时报错:The authenticity of host xxx can‘t be established._第2张图片

2、hosts文件配置问题:C:\Windows\System32\drivers\etc找到hosts文件。用记事本格式打开后在最后一行加上180.97.125.228 gitee.com

注意这里输入你自己的主机号

Git上传文件时报错:The authenticity of host xxx can‘t be established._第3张图片

tips:如果编辑完成后提示你没有权限在此位置中保存文件,右键选择hosts属性,选择安全,点击编辑,选择Users并添加写入和修改权限即可。

Git上传文件时报错:The authenticity of host xxx can‘t be established._第4张图片

3修改/etc/ssh/ssh_config文件的配置:

这是一种彻底去掉SSH主机验证的方法,也就是以后都不会出现这个问题了,但是相应的安全性就会降低,不推荐此操作

在最后面添加:StrictHostKeyChecking no UserKnownHostsFile /dev/null

Git上传文件时报错:The authenticity of host xxx can‘t be established._第5张图片

Git上传文件时报错:The authenticity of host xxx can‘t be established._第6张图片

最后,如果你所有方法都试过还是报错的话,可以尝试卸载重下,不过记得要删除环境变量里的路径哦~

你可能感兴趣的:(git,ssh,服务器)