Java教程

git push时提示错误 sign_and_send_pubkey: no mutual signature supported

本文主要是介绍git push时提示错误 sign_and_send_pubkey: no mutual signature supported,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文通过MetaWeblog自动发布,原文及更新链接:https://extendswind.top/posts/technical/git_push_sign_and_send_pubkey

git push命令之后,出现下面的错误提示:

sign_and_send_pubkey: no mutual signature supported git@gitee.com: Permission denied (publickey). fatal: Could not read from remote repository.

Please make sure you have the correct access rights and the repository exists.

openssh的新版本(当前8.8p1-1)默认不支持ras的默认秘钥。

一开始以为是gitee码云干了什么升级,之后发现是我的manjaro openssh版本太新的问题,已经不支持我几年前生成的秘钥(但是为什么ssh-keygen还是默认用的rsa)。

推荐做法

ssh-keygen -t ed25519 -C “your_email@example.com”

生成一个新的秘钥,然后公钥添加到gitee账户。

最简单处理

修改ssh的客户端的配置文件,~/.ssh/config 或全局的配置文件 /etc/ssh/ssh_config,在其中加下面的代码。

PubkeyAcceptedKeyTypes +ssh-rsa

这篇关于git push时提示错误 sign_and_send_pubkey: no mutual signature supported的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!