1
0
Fork 0
mirror of synced 2024-06-28 03:11:09 -04:00
zimfw/modules/git/functions/parse_git_dirty
2015-12-19 09:48:29 -05:00

17 lines
520 B
Plaintext

# 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