Github ssh -T git@github.com 和 git 功能不起作用,挂起

Github ssh -T git@github.com and git functions are not working, hanging

我正在使用 manjaro linux。我之前设法设置了 ssh 密钥,但是在我重新安装 OS 之后,我在使用 github ssh 文档完成所有操作后失败了。我的 github 命令一直在等待并生成此错误:ssh: connect to host github.com port 22: Connection timed out,示例;

[maviay@manjaro ~]$ ssh -T git@github.com
ssh: connect to host github.com port 22: Connection timed out

虽然防火墙问题可能是端口 22 被阻止的常见原因,但请检查此线程是否存在 wifi chipset driver 问题。

上述问题不会影响 HTTPS (443),这就是您的 workaround 正常工作的原因:

# ~/.ssh/config
Host github.com
 Hostname ssh.github.com
 Port 443