How do I set GIT_SSL_NO_VERIFY for specific repos only?
You can do
git config http.sslVerify "false"
in your specific repo to disable SSL certificate checking for that repo only.
You can do as follows
For a single repo
git config http.sslVerify false
For all repo
git config --global http.sslVerify false
Like what Thirumalai said, but inside of the cloned repository and without --global
. I.e.,
GIT_SSL_NO_VERIFY=true git clone https://url
cd <directory-of-the-clone>
git config http.sslVerify false