Mac电脑升级13系统后,git clone 代码报错,mac升级后git ssh用不了

mac系统出了新版本 13.0.1 后,androidstudio push, pull 代码一直报错:

如下:

Permission denied (publickey).

fatal: Could not read from remote repository.

Please make sure you have the correct access rights

and the repository exists.

经过几翻操作,重新生成id_rsa.pub 也是不行,

最后发现是rsa加密方式的问题,苹果mac升级系统后,默认不支持rsa方式加密git通讯,

所以如果要继续使用这个pub文件加密的方式,则要手动添加cofig配置文件来支持:

如下在 ~/.ssh/ 目录下新增config文件,

然后在 ~/.ssh/config 中新增:

Host *
    PubkeyAcceptedKeyTypes +ssh-rsa
    HostKeyAlgorithms +ssh-rsa

Mac电脑升级13系统后,git clone 代码报错,mac升级后git ssh用不了_第1张图片

Mac电脑升级13系统后,git clone 代码报错,mac升级后git ssh用不了_第2张图片 

 

你可能感兴趣的:(android开发,android,git,mac,git,ssh,android,git)