My Git User Config Cheat Sheet

git

This is more for my notes but here is my Git User Config Cheatsheet for setting up a new computer with git.

COLDFUSION
git config --global user.name "John Doe"
COLDFUSION
git config --global user.email johndoe@example.com
COLDFUSION
git config --global push.default "tracking"
COLDFUSION
git config --global pack.threads "0"
COLDFUSION
git config --global core.autocrlf false
COLDFUSION
git config --global apply.whitespace nowarn
COLDFUSION
git config --global color.ui "auto"
COLDFUSION
git config --global core.excludesfile "C:.gitignore"