rosestrikesback
rosestrikesback

Reputation: 21

What does SSL certificate problem means in vsCode or Git Bash?

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.

enter image description here

Upvotes: 0

Views: 4005

Answers (1)

VonC
VonC

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

Related Questions