From db8efc9a7b2a1a4b01b60f8b8a2ba0afd8fa4431 Mon Sep 17 00:00:00 2001 From: Shawn Sorichetti Date: Thu, 12 May 2011 09:18:59 -0400 Subject: [PATCH] switched to git.zsh from original --- lib/git.zsh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/git.zsh b/lib/git.zsh index 9f6b1ecb4..e96f075be 100644 --- a/lib/git.zsh +++ b/lib/git.zsh @@ -11,14 +11,6 @@ parse_git_dirty() { else echo "$ZSH_THEME_GIT_PROMPT_CLEAN" fi - - if [[ $(echo ${gitstat} | grep -c "^\(# Untracked files:\|# Changed but not updated:\)$") > 0 ]]; then - echo -n "$ZSH_THEME_GIT_PROMPT_UNTRACKED" - fi - - if [[ $(echo ${gitstat} | grep -v '^$' | wc -l | tr -d ' ') == 0 ]]; then - echo -n "$ZSH_THEME_GIT_PROMPT_CLEAN" - fi } # Checks if there are commits ahead from remote