summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--12_Prompts.zsh6
1 files changed, 4 insertions, 2 deletions
diff --git a/12_Prompts.zsh b/12_Prompts.zsh
index c947d6a..f5ec34f 100644
--- a/12_Prompts.zsh
+++ b/12_Prompts.zsh
@@ -43,8 +43,10 @@ chpwd()
if ( __cmd_exists git && test -d .git )
then
- # Shows tracked branches and modified files
- git status | sed -n '2{/# Your branch/p};3q'
+ __debug -n " GIT check..."
+ # Shows tracked branches and modified files
+ git status | sed -n '2{/# Your branch/p;q}'
+ __debug
fi
}