[go: up one dir, main page]

0% found this document useful (0 votes)
17 views1 page

Git Editor Change

The document provides instructions for configuring Git settings, including changing the default text editor, SSL/TLS library, line ending conventions, file system caching, and disabling the Git Credential Mapper. Specific commands are given for each configuration option. The configurations can be set globally or system-wide as needed.

Uploaded by

Daniel Wu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views1 page

Git Editor Change

The document provides instructions for configuring Git settings, including changing the default text editor, SSL/TLS library, line ending conventions, file system caching, and disabling the Git Credential Mapper. Specific commands are given for each configuration option. The configurations can be set globally or system-wide as needed.

Uploaded by

Daniel Wu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

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 ''

You might also like