error setting certificate verify

Git ssh error setting certificate verify

There is show the error setting certificate verify locations error message while fetch the repository

$ git clone https://github.com/FortAwesome/Font-Awesome.git
Cloning into 'Font-Awesome'...
fatal: unable to access 'https://github.com/FortAwesome/Font-Awesome.git/': error setting certificate verify locations:
  CAfile: /Users/kejyun/.ssh/id_rsa
  CApath: none

It’s the ssl certification verify issue. So if you want to ignore verify SSL certification. You can add http.sslverify to false on the git config

git config --system http.sslverify false

Refernece