Skip to content

Instantly share code, notes, and snippets.

@michaelminter
Created October 1, 2012 00:35
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save michaelminter/3808826 to your computer and use it in GitHub Desktop.
Save michaelminter/3808826 to your computer and use it in GitHub Desktop.
Colors in git

Bored with just black and white in your git status? Add some colour!

Open up your global Git configuration file (it should be found in ~/.gitconfig) and enter this into it:

[color]
  ui = auto
[color "branch"]
  current = yellow reverse
  local = yellow
  remote = green
[color "diff"]
  meta = yellow bold
  frag = magenta bold
  old = red bold
  new = green bold
[color "status"]
  added = yellow
  changed = green
  untracked = cyan

Now when you do a git status you should see some pretty colours.

Of course you can change the colours if you want to. The accepted values are two of normal, black, red, green, yellow, blue, magenta, cyan and white and optionally one of bold, dim, ul, blink and reverse. If two colours are given the first is the foreground and the second is the background.

@carloskim123
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment