Last Updated: February 20, 2016
·
559
· ptgoetz

Colorize git output

By default, ANSI color is turned off. You can enable it globally with the following command:

git config --global --add color.ui true

or on a per-repo basis:

git config --add color.ui true