1、先查看是否存在ssh密匙
cat ~/.ssh/id_rsa.pub
2、生成SSH
(1)、ssh-keygen -t rsa -C "邮箱"
(2)、查看ssh版本 ssh -V,OpenSSH 7.0以后的版本不再支持ssh-dss (DSA)算法
(3)、把 HostKeyAlgorithms +ssh-dss 添加到配置~/.ssh/config
3、去Git中配置
(1)命令:cat ~/.ssh/id_rsa.pub ,复制内容
(2)复制到 profile settings——> SSH Keys——> key
(3)profile settings——> SSH Keys ——> Title 可以自定义
4、重置ssh
(1)、先删除ssh:rm -rf .ssh
(2)、新生成ssh:ssh-keygen -t rsa -C "邮箱"
(3)、查看ssh版本 ssh -V,OpenSSH 7.0以后的版本不再支持ssh-dss (DSA)算法
(4)、把 HostKeyAlgorithms +ssh-dss 添加到配置~/.ssh/config配置文件
网友评论