1.Android Studio 中gitlab配置
前提git安装成功。
问题原因 公钥出现问题,重设置用户名和邮箱再重新生成ssh公钥即可
参考:解决Please make sure you have the correct access rights and the repository exists 问题._煌sir的博客-CSDN博客
2.问题解决:Git error: no matching host key type found. Their offer: ssh-rsa
Step 1:
需要修改的文件是 ssh_config 文件,该文件的存放位置涉及到你安装的git目录,我的安装目录为 D:\Program Files\Git
step2:用记事本打开该文件,在末尾添加
Host *
KexAlgorithms +diffie-hellman-group1-sha1
HostkeyAlgorithms +ssh-dss,ssh-rsa
PubkeyAcceptedKeyTypes +ssh-dss,ssh-rsa
接着保存,退出,一气呵成。
网友评论