Unable to resolve “unable to get local issuer certificate” using git on Windows with self-signed certificate

The problem is that git by default using the “Linux” crypto backend. Beginning with Git for Windows 2.14, you can now configure Git to use SChannel, the built-in Windows networking layer as the crypto backend. This means that it will use the Windows certificate storage mechanism and you do not need to explicitly configure the … Read more

How to change line-ending settings

The normal way to control this is with git config For example git config –global core.autocrlf true For details, scroll down in this link to Pro Git to the section named “core.autocrlf” If you want to know what file this is saved in, you can run the command: git config –global –edit and the git … Read more