mac系统idea开发工具git -push 报错:no matching host key type found. Their offer: ssh-dss
原因:
根本原因之所以报错是因为OpenSSH7.0以后的版本不再支持ssh-dss(DSA)算法,官方的说法是这个算法太弱了。MACOS升到10.12附带的openssh版本是7.4,如下:➜~sshd-Vsshd:illegaloption--VOpenSSH_7
解决方案:
命令行里添加选项
ssh -oHostKeyAlgorithms=+ssh-dss aliyunzixun@xxx.com
添加 HostKeyAlgorithms +ssh-dss到配置 ~/.ssh/config