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
You can do
git config http.sslVerify "false"
in your specific repo to disable SSL certificate checking for that repo only.