Issue with Integrating Git Lab with IntelliJ

已回答

I am trying to connect to Git Lab repository from IntelliJ IDE.

I have generated ssh key and configured that in git lab repository. But when i try to add remote server under Git in IntelliJ,it is giving below error. Can someone please help me in resolving this issue.

 

Remote URL test failed: unable to access 'https://giturl.net': SSL certificate problem: unable to get local issuer certificate

0

> I have generated ssh key and configured that in git lab repository

Why do you connect over HTTP then?

> Remote URL test failed: unable to access 'https://giturl.net': SSL certificate problem: unable to get local issuer certificate

Does it work from the command line?

Seems you are using a self-signed certificate which is not trusted by git. See e.g. https://confluence.atlassian.com/bitbucketserverkb/ssl-certificate-problem-unable-to-get-local-issuer-certificate-816521128.html

1

What I did: from command line execute

git config --global http.sslVerify false

0

请先登录再写评论。