18 lines
537 B
Text
18 lines
537 B
Text
# slightly modified parse_git_dirty from oh-my-zsh for theme compatibility
|
|
# not supporting git < 1.7.2; upgrade your shit
|
|
|
|
local STATUS=''
|
|
local FLAGS=('--porcelain' '--ignore-submodules=dirty')
|
|
if [[ ${zgit_hide_prompt} != 'true' ]]; then
|
|
if [[ "$zgit_disable_untracked_dirty" == "true" ]]; then
|
|
FLAGS+='--untracked-files=no'
|
|
fi
|
|
STATUS=$(command git status ${FLAGS} 2> /dev/null | tail -n1)
|
|
fi
|
|
if [[ -n $STATUS ]]; then
|
|
print ${ZSH_THEME_GIT_PROMPT_DIRTY}
|
|
else
|
|
print ${ZSH_THEME_GIT_PROMPT_CLEAN}
|
|
fi
|
|
|
|
#unset FLAGS STATUS
|