0

I set sslVerify to false using the following command but I still get verification error when I try to clone remote repository:

sudo git config --global http.sslVerfiy false

Here is the error:

fatal: unable to access 'xxx': server certificate verification failed.
CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

It worked before I upgrade to ubuntu 14.04!

a.toraby
  • 3,232
  • 5
  • 41
  • 73

1 Answers1

1

The problem resolved by adding sslVerify=false to the clone command:

git -c http.sslVerify=false clone xxx

Thanks for this answer

Community
  • 1
  • 1
a.toraby
  • 3,232
  • 5
  • 41
  • 73