Git提示: Unable to negotiate with xxx.xxx.xxx.xxx port XX: no matching host key type found. Their offer: ssh-rsa,ssh-dss fatal: Could not read from remote repository.
解決:
前提: 在排除沒有配置公鑰的情況下吞滞。
- 在Git的安裝目錄下
Git > etc > ssh
文件夾下找到ssh_config
文件 砰左。 - 在文件末尾添加一下代碼。
# 注意這里的 xxx.com 是沒有 https:// 的
# 如 https://github.com/, 填寫 github.com 即可(最后的斜桿也不能要)。
Host xxx.com
HostkeyAlgorithms +ssh-rsa
PubkeyAcceptedAlgorithms +ssh-rsa