我无法在git中ssh到github、bitbucket或gitlab。
我通常会有以下错误消息:我如何避免它?
==========输出============
ssh -T git@github.com -i ~/.ssh/id_rsa -v
OpenSSH_7.2p2 Ubuntu-4ubuntu2.2, OpenSSL 1.0.2g 1 Mar 2016
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to github.com [192.30.255.113] port 22.
debug1: connect to address 192.30.255.113 port 22: Connection timed out
debug1: Connecting to github.com [192.30.255.112] port 22.
debug1: connect to address 192.30.255.112 port 22: Connection timed out
ssh: connect to host github.com port 22: Connection timed out发布于 2017-08-06 11:34:05
ISP已阻止端口22。解决了!
发布于 2017-08-16 20:05:21
终止SSH进程并重新启动它。它解决了我类似的问题。我发现了SSH的多个实例,在这种情况下,您必须将它们全部杀死。
发布于 2017-08-05 13:49:30
此错误消息通常在以下情况下出现
操作人员确认ISP已阻止端口22。
看看是否可以使用https url:
cd /path/to/my/local/repo
git remote set-url origin https://github.com/<user>/<repo>请注意,使用时,您可能需要follow this gist
单击安全组选项卡,单击编辑规则,然后添加两条规则:
imcp, from port: -1, to port: -1, cidr: 0.0.0.0/0
tcp, from port: 22, to port: 22, cidr: your.ip.address.here/32https://stackoverflow.com/questions/45518078
复制相似问题