我正在通过代理运行,我不知道如何使git工作。如果我尝试克隆仓库,则会出现以下错误:
$ git clone https://github.com/somerepo
克隆到[something] ...致命:无法访问 'https://github.com/somerepo':OpenSSL SSL_connect: 连接到github.com的SSL_ERROR_SYSCALL:443
我已经尝试了changing the git global在这里所说的大部分内容,并且也检查了这个SO线程,但无济于事。 我还尝试取消设置http和https的代理。
在我的git配置中,它看起来像这样:
[user]
name = Adri
email = [some_address]@outlook.com
[http]
sslBackend = openssl
sslCAInfo = C:\\Program Files\\Git\\mingw64\\ssl\\cert.pem
[remote "origin"]
proxy =
这可能是个问题吗?
PS 我在所有git操作中都遇到了这个问题,我无法克隆,拉动,推入等等。以及所有存储库。