SSL certificate

You can disable SSL certificate validation locally in Git using the following command:

$ git -c http.sslVerify=false clone [URL]

You can also disable SSL certificate validation at a global level using the following command:

$ git config --global http.sslVerify false

To re-enable SSL certificate validation, use the following command:

$ git config --global http.sslVerify true

Revision #1
Created 4 July 2022 14:22:04 by Alois
Updated 4 July 2022 14:23:12 by Alois