Problem description

After submitting the code of IDEA just now, errors have been reported on Github

Push failed: Failed with error: unable to access 'https://github.com/weidongcao/bigdata/': 
OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
Copy the code

I thought it was a wall, like a proxy push can not go up. I found something on the Internet that solved the problem. The reason is the Http proxy of Git. Git supports three protocols: Git, SSH and Http. The push should have gone through the SSH tunnel, but because the Http proxy is set, the Http proxy is used, so the submission cannot be done. Simply cancel the HTTP proxy.

The solution

In your github project, open the git command line in your local root directory and execute the following command:

git config --global --unset http.proxy1
Copy the code

Then use IDEA push again, OK, problem solved.

Resources: blog.csdn.net/daerzei/art…