Loading

Paste #pba9c21ya

  1. # http://stackoverflow.com/questions/12795790/how-to-colorize-git-status-output
  2. # http://stackoverflow.com/questions/10998792/how-to-color-the-git-console-in-ubuntu
  3. [color]
  4.     status = auto
  5.     diff = auto
  6.     ui = auto
  7.  
  8. [color "status"]
  9.     added = green
  10.     changed = blue bold
  11.     untracked = magenta
  12.     deleted = cyan
  13.  
  14. [color "branch"]
  15.     current = white
  16.     local = yellow bold
  17.     remote = green
  18.  
  19. [color "diff"]
  20.     new = yellow bold
  21.     old = blue bold

Comments