Answers for "git disable ssl cert"

2

git disable ssl cert

# 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
Posted by: Guest on April-29-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language