Git Config
To get a list of the global config options for Git, you can run this:
git config --global --list
When setting config options, you need to add the location of the config file. So for example, if you want to set core.autocrlf
to false
as a global
or system
option, you can run either one of the following commands (depending on the location you want to run it for):
git config --global core.autocrlf false
git config --system core.autocrlf false
Tags: #Git
Discuss... or leave a comment below.