GIT lab for versioning

1

We install the GIT LAB service on Azure.

When I run this command

git push --set-upstream origin máster

show this error:

  

fatal: unable to access 'address': SSL certificate problem: self signed certificate

What can it be?

    
asked by anonymous 11.04.2017 / 16:59

1 answer

2

The git server you are trying to connect to has a self-signed certificate. To disable this validation run:

git config --global http.sslVerify false
    
11.04.2017 / 17:03