Change default text editor:
git config --global core.editor "'C:\Windows\gvim.bat' -f -i NONE"
Change SSL/TLS ("HTTPS Transport") library:
git config --global http.sslBackend schannel
git config --global http.sslBackend openssl
Change line ending conventions:
git config --global core.autocrlf true
git config --global core.autocrlf input
git config --global core.autocrlf false
Enable / Disable file system caching:
git config core.fscache true
git config core.fscache false
Disable Git Crendential Mapper:
git config --system --unset credential.helper
git config --global credential.helper ''
git config --global core.askpass ''