Computer/Tips
[git] SSL certificate problem 해결
창천(蒼天)
2022. 6. 14. 11:54
git push origin HEAD:master
를 실행했을 때
SSL certificate problem: self signed certificate in certificate chain
오류가 발생했다.
해결 :
git config --global http.sslVerify false
참조: https://stackoverflow.com/questions/11621768/how-can-i-make-git-accept-a-self-signed-certificate
How can I make git accept a self signed certificate?
Using Git, is there a way to tell it to accept a self signed certificate? I am using an https server to host a git server but for now the certificate is self signed. When I try to create the repo...
stackoverflow.com