I recently saw that the git console in Windows is colored, e.g. Green for additions, red for deletions, etc. How do I color my git console like tha
git
In your ~/.gitconfig file, simply add this:
~/.gitconfig
[color] ui = auto
It takes care of all your git commands.