From: Travis Swicegood Date: Tue, 1 May 2012 22:23:23 +0000 (-0500) Subject: Remove commented out stuff X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=e51c7fb97cc7810bc78f15d138db0721ac20d66a;p=common%2Fbash_it.git Remove commented out stuff --- diff --git a/themes/doubletime/doubletime.theme.bash b/themes/doubletime/doubletime.theme.bash index 6756976..a01bf79 100644 --- a/themes/doubletime/doubletime.theme.bash +++ b/themes/doubletime/doubletime.theme.bash @@ -74,18 +74,3 @@ git_prompt_status() { echo "[$git_status${normal}]" } - -# git_prompt_color() { -# -# if [ -n "$(git status | grep 'Changes not staged' 2> /dev/null)" ]; then -# git_status='${bold_red} ✗' -# elif [ -n "$(git status | grep 'Changes to be committed' 2> /dev/null)" ]; then -# git_status='${bold_yellow} ^' -# elif [ -n "$(git status | grep 'Untracked files' 2> /dev/null)" ]; then -# git_status='${bold_cyan} +' -# else -# git_status='${bold_green} ✓' -# fi -# echo $git_status -# -# }