1. Unknown SSL protocol error in connection to XXX: 443
Unknown SSL protocol error in connection to XXX: 443 occurs when Git is used to download from a remote location..
Method 1:
(example):
Set up proxy server:
: Add in .gitconfig
http.proxy=127.0.0.1:8087
http.sslVerify=false
Method 2:
(example):
Type directly on the command line
git config --global http.proxy 127.0.0.1:8087
git config --global http.sslVerify false