Friday, August 31, 2018

GIT ssl error

I got an ssl error executing git commands.

eg:

$ git push origin master
fatal: unable to access 'https://github.com/vrtugit/git-github.git/': SSL certificate problem: self signed certificate in certificate chain


Solution ( Workaround)

switch off ssl verification

 git -c http.sslVerify=false push origin master

No comments:

Post a Comment