Skip to content

Instantly share code, notes, and snippets.

@fabiancarlos
Created October 26, 2012 02:32
Show Gist options
  • Save fabiancarlos/3956590 to your computer and use it in GitHub Desktop.
Save fabiancarlos/3956590 to your computer and use it in GitHub Desktop.
Git Essential Customization

Ativar coloração do que interessa

git config --global color.branch auto
git config --global color.diff auto
git config --global color.interactive auto
git config --global color.status auto

tudo colorido

git config --global color.ui auto

Versão curta de "git status" para "git s"

git config --global alias.s 'status --short'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment