Change Git color

Git has a default color schema for showing information. However, sometimes it is difficult to read (especially for color blind people), such as below

You can modify the color schema by editing the C:\Users\yourname.gitconfig file as below

1
2
3
4
5
6
[color]
ui = true
[color "status"]
added = yellow
changed = green
untracked = cyan

Now it is much easier to read.

Done.

Share Comments