Remove commented out stuff

pull/117/merge
Travis Swicegood 2012-05-01 17:23:23 -05:00
parent 4c3f21ae0b
commit e51c7fb97c
1 changed files with 0 additions and 15 deletions

View File

@ -74,18 +74,3 @@ git_prompt_status() {
echo "[$git_status${normal}]" 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
#
# }