Do not verify SSL certificate with GIT

Three ways not to validate the SSL certificate with GIT:

  • With a parameter when using the command:
git -c http.sslVerify=false
  • Defining an environment variable:
export GIT_SSL_NO_VERIFY=true
  • Configuring the git client:
git config http.sslVerify false