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
Another way is to edit the .gitconfig (create one if not exist), for instance:
.gitconfig
vim ~/.gitconfig
and then add:
[color] diff = auto status = auto branch = auto