Skip to content

Instantly share code, notes, and snippets.

@quinn
Created June 25, 2010 19:19
Show Gist options
  • Save quinn/453316 to your computer and use it in GitHub Desktop.
Save quinn/453316 to your computer and use it in GitHub Desktop.
# lifted from http://cheat.errtheblog.com/s/git
# paste into terminal
git config --global color.ui auto
git config --global color.branch.current "yellow reverse"
git config --global color.branch.local yellow
git config --global color.branch.remote green
git config --global color.diff.meta "yellow bold"
git config --global color.diff.frag "magenta bold"
git config --global color.diff.old "red bold"
git config --global color.diff.new "green bold"
git config --global color.status.added "yellow"
git config --global color.status.changed green
git config --global color.status.untracked cyan
git config --global alias.st status
git config --global alias.ci commit
git config --global alias.br branch
git config --global alias.co checkout
git config --global alias.df diff
git config --global alias.lg "log -p"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment