No verificar el certificado SSL con GIT

Tres maneras para no validar el certificado SSL con GIT:

  • Con un parámetro al usar el comando:
git -c http.sslVerify=false
  • Definiendo una variable de entorno:
export GIT_SSL_NO_VERIFY=true
  • Configurando el cliente git:
git config http.sslVerify false