Git prompt error setting certificate verify locations

The git version 2.14.2
Git prompts an error setting for the certificate verify locations error
usually because the location of the SSL certificate was not found

two ways to solve:

1. Reconfigure certificate location
Windows certificates are generally installed in the mingw64/ SSL /certs/ca-bundle. CRT directory
configure certificate location

  git config --system http.sslcainfo  "$gitPath/mingw64/ssl/certs/ca-bundle.crt"

Note: $gitPath is git’s installation directory
 
2. Turn off SSL authentication

 git config --system http.sslcainfo  false

 

Read More: