summaryrefslogtreecommitdiff
path: root/01_Functions.zsh
diff options
context:
space:
mode:
Diffstat (limited to '01_Functions.zsh')
-rw-r--r--01_Functions.zsh7
1 files changed, 6 insertions, 1 deletions
diff --git a/01_Functions.zsh b/01_Functions.zsh
index 35cc361..3b7a517 100644
--- a/01_Functions.zsh
+++ b/01_Functions.zsh
@@ -114,6 +114,11 @@ get_git_branch ()
fi
fi
+ if [ "$(git-status 2>&- | grep "new file" | head -n1)" != "" ] ; then
+ # ADDED FILES
+ my_git_branch=$my_git_branch" (+)"
+ fi
+
echo $my_git_branch
}
@@ -136,7 +141,7 @@ get_git_status ()
if [ "$(git-diff --cached 2>&- | grep '^diff ' | head -n1 )" != "" ] ; then
cached="yes"
fi
- if [ "$(git-ls-files -m 2>&-)" != "" ] ; then
+ if [ "$(git-ls-files -m 2>&- | head -n1)" != "" ] ; then
not_up_to_date="yes"
fi