在github上添加密钥后
测试ssh
ssh -T git@github.com
输出如下
git@github.com's password:
原因
在 HTTPS 端口使用 SSH
有时,防火墙会完全拒绝允许 SSH 连接。
如果无法选择使用具有凭据缓存的 HTTPS 克隆,可以尝试使用通过 HTTPS 端口建立的 SSH 连接克隆。
大多数防火墙规则应允许此操作,但代理服务器可能会干扰
$ ssh -T -p 443 git@ssh.github.com
> 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
测试文章来源:https://www.toymoban.com/news/detail-557681.html
$ ssh -T git@github.com
> 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文章来源地址https://www.toymoban.com/news/detail-557681.html
到了这里,关于github 配置了公钥依旧提示git@github.com‘s password: Permission denied, please try again的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!