Skip to content

Instantly share code, notes, and snippets.

@timiles
timiles / setup_git_configs.ps1
Last active September 22, 2016 09:08 — forked from deveshjeshani/setup-git-configs.ps1
git config settings
git config --global remote.origin.prune true
git config --global alias.lg "log --oneline --graph --decorate"
git config --global color.ui.auto true
git config --global color.status.added "green normal bold"
git config --global color.status.changed "red normal bold"
git config --global color.status.updated "green normal bold"
git config --global color.status.untracked "yellow normal bold"
git config --global color.branch.remote "red normal bold"
git config --global color.branch.local "magenta normal bold"
git config --global color.diff.old "red bold"