win10 git报错:Unable to negotiate with port: no matching host key type found. Their offer: ssh-rsa
现象
已经生成id_rsa的密钥,并且在git上进行了配置。但是用git clone失败。报错:Unable to negotiate with port: no matching host key type found. Their offer: ssh-rsa。
参考链接
问题原因和解决方案参考以下文档:
https://stackoverflow.com/questions/69875520/unable-to-negotiate-with-40-74-28-9-port-22-no-matching-host-key-type-found-th
原因
解决方案
在C:\Users\rookie\.ssh\config中添加如下配置,即可正常访问git。
Host phab.biz.com HostName phab.biz.com User git IdentityFile ~/.ssh/id_rsa IdentitiesOnly yes HostkeyAlgorithms +ssh-rsa PubkeyAcceptedAlgorithms +ssh-rsa