昨天还是能正常推送代码的,今天push报如下错误 Failed with error: ERROR: You’re using an RSA key with SHA-1, which is no longer allowed. Please use a newer client or a different key type. Could not read from remote repository. 错误:您正在使用RSA密钥与SHA-1,这是不再允许的。请使用新的客户端或不同的密钥类型。无法从远程存储库读取数据。 执行连接测试又是通的。
C:\Users\Administrator>ssh -T git@gitee.com
Hi [36;01mzjqSoCool[0m! You've [32msuccessfully[0m authenticated, but GITEE.COM does not provide shell access.
查询资料看不少说要执行如下命令
git pull origin master --allow-unrelated-histories
这个命令的意思是【允许不相关历史提交,并强制合并】,看着命令意思跟我的好像还是不大对的上,不过还是试试吧,在对应项目执行上述命令后继续提交,还是报Failed with error: ERROR: You’re using an RSA key with SHA-1, which is no longer allowed. Please use a newer client or a different key type. Could not read from remote repository。好吧,继续尝试,猜测应该是ssh key的原因。本地的**.ssh**删掉,重新生成新的替换,具体查看我这篇文章 github或者gitee配置ssh免密登录。重新生成后可以了,不过具体是因为啥导致原来可以突然不行了还未知。如果经过上述操作还是不行,建议换一种生成.ssh的算法,比如:ssh-keygen -t ed25519 -C “xxxxx@xxxxx.com”。