Skip to content

Instantly share code, notes, and snippets.

@v5tech
Created September 1, 2014 15:59
Show Gist options
  • Select an option

  • Save v5tech/5af6e4fdb649d6a41fda to your computer and use it in GitHub Desktop.

Select an option

Save v5tech/5af6e4fdb649d6a41fda to your computer and use it in GitHub Desktop.
Colorize Git Terminal Commands

Colorize Git Terminal Commands

Add the following to your ~/.gitconfig file to show the git command output in color when working in a terminal

[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

http://iosdevelopertips.com/tools/colorize-git-terminal-commands.html

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