github 配置了公钥依旧提示[email protected]‘s password: Permission denied, please try again

在github上添加密钥后

测试ssh

ssh -T [email protected]

输出如下

[email protected]'s password:

原因

在 HTTPS 端口使用 SSH
有时,防火墙会完全拒绝允许 SSH 连接。
如果无法选择使用具有凭据缓存的 HTTPS 克隆,可以尝试使用通过 HTTPS 端口建立的 SSH 连接克隆。
大多数防火墙规则应允许此操作,但代理服务器可能会干扰

$ ssh -T -p 443 [email protected]
> Hi USERNAME! You've successfully authenticated, but GitHub does not
> provide shell access.

如果这样有效,万事大吉!
在~/.ssh中添加config文件,内容如下

Host github.com
Hostname ssh.github.com
Port 443
User git

测试

$ ssh -T [email protected]
> Hi USERNAME! You've successfully authenticated, but GitHub does not
> provide shell access.

参考
https://docs.github.com/zh/authentication/troubleshooting-ssh/using-ssh-over-the-https-port

你可能感兴趣的:(github,git,github,ssh)