summaryrefslogtreecommitdiff
path: root/01_Functions.zsh
diff options
context:
space:
mode:
authorHugues Hiegel <hugues@hiegel.fr>2008-02-07 12:19:57 +0100
committerHugues Hiegel <hugues@hiegel.fr>2008-03-07 14:15:20 +0100
commit37c79a74a154088a6cf056f88a12417089376ed2 (patch)
treed46e04c4466df1d1a2915f586fa21217e36d320e /01_Functions.zsh
parent59aee076f33ffb2b99b186cb0a250660f62921ce (diff)
Git-status will be better like this.
Diffstat (limited to '01_Functions.zsh')
-rw-r--r--01_Functions.zsh14
1 files changed, 8 insertions, 6 deletions
diff --git a/01_Functions.zsh b/01_Functions.zsh
index 14db560..6966f56 100644
--- a/01_Functions.zsh
+++ b/01_Functions.zsh
@@ -45,22 +45,24 @@ get_git_branch ()
check_git_status ()
{
## GIT TRACKING ##
- if [ "$GITCHECK" != "" ]
+ if [ "$GITCHECK" != "no" ]
then
GITBRANCH=$(get_git_branch);
if [ "$GITBRANCH" != "" ]
then
preprint "Check git status..."
- _git_status=$(git-status 2>&- | grep -E '^# ([[:alpha:]]+ )+(but not|to be)( [[:alpha:]]+)+:$')
- if [ "$(grep "but not" <<< $_git_status)" != "" ] ; then
- COLOR_GIT=$COLOR_NOT_UP_TODATE
- elif [ "$(grep "to be committed" <<< $_git_status)" != "" ] ; then
- COLOR_GIT=$COLOR_TOBE_COMMITED
+ #_git_status=$(git-status 2>&- | grep -E '^# ([[:alpha:]]+ )+(but not|to be)( [[:alpha:]]+)+:$')
+ if [ "$(git-diff --cached | lsdiff)" != "" ] ; then
+ COLOR_GIT=$COLOR_TO_BE_COMMITED
+ elif [ "$(git-ls-files -m)" != "" ] ; then
+ COLOR_GIT=$COLOR_NOT_UP_TO_DATE
else
COLOR_GIT=$COLOR_BRANCH_OR_REV
fi
fi
+ else
+ GITBRANCH=""
fi
GitBranch=${GITBRANCH:+:$GITBRANCH}
GITBRANCH=${GITBRANCH:+$C_$COLOR_DOUBLEDOT$_C:$C_$COLOR_GIT$_C$GITBRANCH}