git - colored diff, branch, etc output by default • vim, git, aws and other three-letter words

To have colored git commands output, use the following command: git config color.ui true or (globally) git config --global color.ui true Alternatively, you can set color for individual git commands. git config color.branch auto git config color.diff auto git config color.interactive auto git config…