无法在Win10上使用ssh推送/拉取我自己的几个github仓库

9rygscc1  于 2023-05-05  发布在  Git
关注(0)|答案(1)|浏览(172)

我未能推动和拉从我的一些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结束,这表明身份验证已经发生。所以,我真的不知道下一步该怎么做。任何帮助都很感激。

im9ewurl

im9ewurl1#

解决方案:

切换到https://解决了这个问题。如here所述,某些防火墙可能会拒绝ssh连接。因此,您可以尝试通过HTTPS进行SSH。要检查是否可以,请运行以下命令:

ssh -T -p 443 git@ssh.github.com

如果您没有收到任何欢迎消息,这意味着您无法通过HTTPS进行SSH,因此您必须通过运行以下命令切换到HTTPS:

git remote set-url origin https://github.com/OWNER/REPOSITORY.git

更多详情请参见here

相关问题