I am attempting to clone my central repository from my script server which used to work in the past. When I attempt to use 'git clone' I get the following error. How can I fix or test connectivity to my central repository from my script server?
Cloning into 'prod-batch'
fatal: unable to access 'https://..........prod-batch.git/': SSL certificate problem: self signed certificate
Community moderators have prevented the ability to post new answers.
Hi Grant,
Can you check if on your .gitconfig file there is the parameter sslCAInfo? In case not, please add the following:
[http] sslCAInfo=C:\\Path\\To\\stash.crt
Another workaround would be disable the SSL Verification:
git config --global http.sslVerify false
Lastly, this NOT Official documentation might be useful for you:
http://www.systemroot.ca/2014/09/git-stash-set-up-self-signed-ssl-certificate-windows/
Regards,
Renato Rudnicki
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.