Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSL certificate problem: unable to get local issuer certificate AZURE DEVOPS

I have a problem... My code in Gitlab, Pipeline in Azure DevOps. I use classic editor. When i start pipeline i have error "fatal: unable to access 'fatal: unable to access 'https://my.repos.example:***.git/': SSL certificate problem: unable to get local issuer certificate" Please help me!

like image 280
kostukp96 Avatar asked Sep 09 '25 18:09

kostukp96


1 Answers

For me this issue came up when attempting to clone a repository through Visual Studio 2019. Upon selecting the Azure option in the repository menu I then picked the codebase I wanted to clone. After this step I was prompted with an error of:

 "SSL certificate problem: unable to get local issuer certificate"

I ran the git command setting up the global ssl backend:

> git config --global http.sslbackend schannel

And the next time I tried the steps listed above, all was well.

like image 110
tijko Avatar answered Sep 12 '25 19:09

tijko