ohmyzsh/lib/git.zsh
Michael D. Ivey 66c806c248 Fix git_parse_dirty
With git 1.6.6 (not sure about others) git_parse_dirty() stopped
working, perhaps due to a change in stderr/stdout. This fixes
the function to check for the actual output.

Only tested on git 1.6.6, so YMMV.
2010-09-09 14:23:45 -04:00

13 lines
444 B
Bash

# get the name of the branch we are on
function git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_SUFFIX"
}
parse_git_dirty () {
if [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]]; then
echo "$ZSH_THEME_GIT_PROMPT_DIRTY"
else
echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
fi
}