Last active
February 8, 2018 13:50
-
-
Save matheusfaustino/56dee75475b9857d056e to your computer and use it in GitHub Desktop.
.gitconfig - Changing git color
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
# This is Git's per-user configuration file. | |
[core] | |
# Please adapt and uncomment the following lines: | |
editor = vim | |
filemode = false | |
[push] | |
default = matching | |
[help] | |
autocorrect = 0 | |
[merge] | |
tool = meld | |
conflictstyle = diff3 | |
[rerere] | |
enabled = 1 | |
[color "status"] | |
changed = red bold | |
#untracked = magenta bold | |
untracked = cyan bold | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] | |
meta = yellow bold | |
frag = magenta bold | |
old = red bold | |
new = green bold |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment