Configure Git


There are three levels of configuration:


$ git config ...

On Unix

On Windows

To access them use


--system
--global
--local

Samples:


$ git config --global --add user.name "Foo Bar"
$ git config --global --add user.email foo@bar.com

$ git config --list
$ git config --list --global
$ git config user.name      # to see specific value