Answers for "git unable to access ssl certificate problem"

3

windows fatal: unable to access SSL certificate problem: unable to get local issuer certificate

# in unix put this in your .bash_profile, while
# in windows put it in a batch script that runs at startup or
# simply run it before cloning the repo
git config --global http.sslVerify false
Posted by: Guest on February-04-2021
0

git config --global http.sslverify "false" This command resolve my problem

//If you get an error in git when you try to push to heroku, type this code
//to the console.
git config --global http.sslverify "false"
This command resolve my problem
Posted by: Guest on July-01-2020

Code answers related to "git unable to access ssl certificate problem"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language