Problem sending files to bitBucket

1

I am currently sending the commit files to the database, but it is not working, I am doing everything correct but giving the following message.

git -c diff.mnemonicprefix=false -c core.quotepath=false push -v --tags 

origin master:master
fatal: unable to access 'MEU SITE': SSL certificate problem: unable to get local issuer certificate

Pushing to MEUSITE.GIT

Completado com erros, veja acima.

What could have caused the error? And how to solve?

    
asked by anonymous 03.10.2015 / 16:20

1 answer

1

Following what mgibsonbr indicated, a quick and simple way to turn off SSL Certificate verification would be for this git config --global http.sslVerify false command, I hope it helps.

    
04.10.2015 / 00:20