Home

Published

- 1 min read

git disable ssl cert

img of git disable ssl cert

The solution for this is noted below

git disable ssl cert

Solution

   # Disables ssl verfication in the local repo
git config http.sslVerify false
# or, in ".git/config" add the following (the name of the server is optional)
[http "https://gitlab.dev"]
        sslVerify = false
# or, also prepend to each command
SET GIT_SSL_NO_VERIFY=true && git some operation

Try other methods by searching on the site. That is if this doesn’t work