Today's Question:  What does your personal desk look like?        GIVE A SHOUT

Fix SSL 'alert protocol version' issue while git clone remote repository

  sonic0002        2018-07-08 05:41:39       7,635        0    

Git provides ways to securely connect to remote repository and clone remote repository to local machine. This post will teach you how to fix the "SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version" issue while cloning a remote repository.

The issue would look like:

If this error occurs, it is most probably caused by out of date git version being used.To improve its security awareness, some weak cryptographic algorithms have been disabled and all git clients should upgrade to latest ones to accomodate to the new security requirements. In the above error case, you should first check what git version you are using to ensure that it's not too old. Open a command console or terminal and type git version.

In above screenshot, the git version is 1.9.5 which was released in 2015 and now deprecated and it is not supporting TLSv1.1. Try to upgrade the git version being used. 

Once the git is upgraded, try to clone the repository again and it should work.

In case you don't want to upgrade the git version and you still want it to work, you could try to config the git client to disable SSL check.

git config --global http.sslverify false

Note this way of workaround is not recommended as it beats the security checks which mean to ensure security of your environment.

GIT  GIT CLONE  GIT SECURITY 

Share on Facebook  Share on Twitter  Share on Weibo  Share on Reddit 

  RELATED


  0 COMMENT


No comment for this article.