git终端配置颜色

默认情况下git是黑白的。

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

配置之后,就有颜色了。

原文地址:https://www.cnblogs.com/jiqing9006/p/9444139.html