no matching host key type found. Their offer: ssh-rsa

windows下使用git bash拉代码报错如下:

Unable to negotiate with 192.168.133.58 port 29418: 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 
and the repository exists.

解决方法:
在用户目录下的 .ssh文件夹下新建一个 config 文件,添加:

Host *
HostkeyAlgorithms +ssh-rsa
PubkeyAcceptedKeyTypes +ssh-rsa

猜你喜欢

转载自blog.csdn.net/qq_27577263/article/details/121079772