Reputation: 21
I'm trying to add my vsCode Python project to my GitHub account but I get that : "SSL certificate problem: self signed certificate in certificate chain"
What should I do?
I could also do these with git commands. But I get the same problem here.
Upvotes: 0
Views: 4005
Reputation: 1324218
Check in command line the output of git config -l --show-origin --show-scope | grep -i ssl
If you see anything related to sslCA, remove that setting. The default certificates which come with Git for Windows should be adequat to access https://github.com
.
Upvotes: 1