git提交代码时报错:
git 报错
Unable to negotiate with 106.52.160.162 port 22: no matching host key type found. Their offer: ssh-rsa
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
原因:
是Git找不到支持的密钥交换方法,因为新版Openssh中认为SHA1这种hash散列算法过于薄弱,已经不再支持,所以需要手动去允许对于SHA1的支持 。
解决办法:
1、MacOS、Linux,在生成公钥的~/.ssh文件夹下,新建一个config文件(config文件没有后缀)。
2、Windows 文件夹在当前用户下 ~/.ssh(如下图所示)比如我的用户目录
config文件是添加代码:文章来源:https://www.toymoban.com/news/detail-513166.html
Host *
HostkeyAlgorithms +ssh-rsa
PubkeyAcceptedKeyTypes +ssh-rsa
保存,然后重新提交代码,成功。文章来源地址https://www.toymoban.com/news/detail-513166.html
到了这里,关于git 报错 Unable to negotiate with 106.52.160.162 port 22: no matching host key type found.的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!