This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |