Remove commented out stuff
authorTravis Swicegood <development@domain51.com>
Tue, 1 May 2012 22:23:23 +0000 (17:23 -0500)
committerTravis Swicegood <development@domain51.com>
Tue, 1 May 2012 22:23:23 +0000 (17:23 -0500)
themes/doubletime/doubletime.theme.bash

index 6756976..a01bf79 100644 (file)
@@ -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
-#
-# }