Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I miss the Git syntax highlighting I had on Windows for every "git .*" command -- you know, like green staged filenames, some bolding, etc.

How do I enable Git syntax highlighting for Mac's terminal?

After searching for 20 minutes, I was surprised that I couldn't find the answer.

share|improve this question

4 Answers

up vote 35 down vote accepted
git config --global color.ui auto
share|improve this answer

For seeing different colors for the diff command, use:

git config --global color.diff true

To globally change colors for most commands, use:

git config --global color.ui true
share|improve this answer
1  
This version only affects diffs, not logs, statuses, etc. – rob mayoff Nov 15 '11 at 4:07
You don't have to restart Terminal. – rob mayoff Nov 15 '11 at 6:43
yeah Rob, you're right about not having to restart it. I'm just used to doing it after I configure settings in the terminal. – DemitryT Nov 15 '11 at 16:57

I've used next solution:

git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto

Original article

share|improve this answer
git config --global color.diff true
git config --global color.status true
git config --global color.branch true
git config --global color.interactive true

There are 4 settings types available:

  • false - disabled
  • true - enabled, only in command prompt
  • always - enabled always
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.