我未能推动和拉从我的一些repos(不是所有,只是一些)。到目前为止,我找到的解决方案都不起作用。我试着git init
,重新启动我的电脑,并设置git config http.sslVerify "false"
,但没有工作。它遵循ssh -vT git@github.com
的输出
debug1: Connecting to github.com [140.82.121.4] port 22.
debug1: Connection established.
debug1: identity file C:\\Users\\Barzi/.ssh/id_rsa type 0
debug1: identity file C:\\Users\\Barzi/.ssh/id_rsa-cert type -1
debug1: identity file C:\\Users\\Barzi/.ssh/id_dsa type -1
debug1: identity file C:\\Users\\Barzi/.ssh/id_dsa-cert type -1
debug1: identity file C:\\Users\\Barzi/.ssh/id_ecdsa type -1
debug1: identity file C:\\Users\\Barzi/.ssh/id_ecdsa-cert type -1
debug1: identity file C:\\Users\\Barzi/.ssh/id_ed25519 type 3
debug1: identity file C:\\Users\\Barzi/.ssh/id_ed25519-cert type -1
debug1: identity file C:\\Users\\Barzi/.ssh/id_xmss type -1
debug1: identity file C:\\Users\\Barzi/.ssh/id_xmss-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_for_Windows_8.1
kex_exchange_identification: read: Connection timed out
在我的理解中,包含id_ed25519
的行并没有以-1
结束,这表明身份验证已经发生。所以,我真的不知道下一步该怎么做。任何帮助都很感激。
1条答案
按热度按时间im9ewurl1#
解决方案:
切换到
https://
解决了这个问题。如here所述,某些防火墙可能会拒绝ssh
连接。因此,您可以尝试通过HTTPS进行SSH。要检查是否可以,请运行以下命令:如果您没有收到任何欢迎消息,这意味着您无法通过HTTPS进行SSH,因此您必须通过运行以下命令切换到HTTPS:
更多详情请参见here。