Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenSSL SSL_connect: SSL_ERROR_SYSCALL VS2017 Community / TFS

I can't sync my local git with visual studio online. This is the error I get

Git failed with a fatal error. unable to access 'https://mysite.visualstudio.com/DefaultCollection/_git/MajorMaintScopeChallenge/': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to mysite.visualstudio.com:443

Update: It's on a PC Windows 8

like image 446
Lee Avatar asked Dec 07 '22 15:12

Lee


1 Answers

I fixed it with resetting the proxy;

Running these commands in cmd;

git config --global --unset https.proxy
git config --global --unset http.proxy
like image 186
NightPhoxy Avatar answered Mar 07 '23 05:03

NightPhoxy