I’m using Mac Ventura 13.6.6
and git version 2.39.3 (Apple Git-145)
. Due to my location, I have to use VPNs to use Google, GitHub, etc. It has been working well.
Since several days ago, I realize that I cannot connect to GitHub anymore, while other sites work fine. Opening github.com in a browser returns ERR_CONNECTION_CLOSED
as follows.
Git clone and git push return an error fatal: unable to access 'https://github.com/softtimur/code.git/': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
.
nano ~/.gitconfig
gives
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
# name = Timur Soft
# email = [email protected]
[user]
name = softtimur
email = [email protected]
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[http]
sslVerify = true
I tried to modify sslVerify
to false
, but it still did not work.
Does anyone know how to fix this connection problem?