From f7f2f977d57a63115b3c3fc2a27a6f2b288264c2 Mon Sep 17 00:00:00 2001 From: Brandon Heller Date: Thu, 4 Mar 2010 16:34:12 -0800 Subject: [PATCH] Colorize git output by default in VM --- util/deb/install_tools.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/util/deb/install_tools.sh b/util/deb/install_tools.sh index 07d3740..84559cd 100755 --- a/util/deb/install_tools.sh +++ b/util/deb/install_tools.sh @@ -5,3 +5,8 @@ #Install tcpdump and tshark, cmd-line packet dump tools. Also install gitk, #a graphical git history viewer. sudo apt-get install -y tcpdump tshark gitk + +#Set git to colorize everything. +git config --global color.diff auto +git config --global color.status auto +git config --global color.branch auto \ No newline at end of file