After upgrading to IntelliJ IDEA 2019.2, I started encountering the following error when trying to pull from my Git repository:
Git Pull Failed: unable to access 'https://github.xxx.com/app-Hello-USD/DGS.git/': SSL certificate problem: self signed certificate in certificate chain
It seems that the SSL certificate for my Git server is self-signed, and Git is rejecting it.
I’m looking for advice on what options or configurations I can use to resolve this issue. How can I either make Git trust the self-signed certificate or bypass this error safely?
What’s the recommended way to handle **ssl certificate problem: self signed certificate in certificate chain in a development environment without compromising security?