My Git User Config Cheat Sheet

June 10, 2010 by Mike Henke    No Comments
Posted under: Git

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

git config --global user.name "John Doe"

git config --global user.email johndoe@example.com

git config --global push.default "tracking"

git config --global pack.threads "0"

git config --global core.autocrlf false

git config --global apply.whitespace nowarn

git config --global color.ui "auto"

git config --global core.excludesfile "C:\.gitignore"

0 Comment + Add Comment

  • Got anything to say? Be the First to leave a comment!