Jul 252011
List all git config options
Answer:
To show the current git global options, you can use the command "git config --list"
# git config --list
user.name=John Doe
[email protected]
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=auto
color.ui=true
color.pager=true
..