I have to use a git server without proper certificates, but I don\'t want to have to do
env GIT_SSL_NO_VERIFY=true git command
every single
Like what Thirumalai said, but inside of the cloned repository and without --global. I.e.,
--global
GIT_SSL_NO_VERIFY=true git clone https://url
cd
git config http.sslVerify false