2009-08-28 18:14:17 +00:00
|
|
|
# get the name of the branch we are on
|
|
|
|
function git_prompt_info() {
|
2009-09-22 18:48:55 +00:00
|
|
|
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
|
2009-09-22 18:38:24 +00:00
|
|
|
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_SUFFIX"
|
2009-08-28 18:14:17 +00:00
|
|
|
}
|
2009-09-22 18:38:24 +00:00
|
|
|
|
2009-08-28 18:14:17 +00:00
|
|
|
parse_git_dirty () {
|
2009-11-09 20:38:40 +00:00
|
|
|
if [[ $((git status 2> /dev/null) | tail -n1) != "nothing to commit (working directory clean)" ]]; then
|
2009-09-14 16:42:53 +00:00
|
|
|
echo "$ZSH_THEME_GIT_PROMPT_DIRTY"
|
|
|
|
else
|
|
|
|
echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
|
|
|
|
fi
|
2009-08-28 18:14:17 +00:00
|
|
|
}
|
2009-09-14 16:42:53 +00:00
|
|
|
|
2009-11-25 20:45:16 +00:00
|
|
|
#
|
|
|
|
# Will return the current branch name
|
|
|
|
# Usage example: git pull origin $(current_branch)
|
|
|
|
#
|
|
|
|
function current_branch() {
|
|
|
|
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
|
|
|
|
echo ${ref#refs/heads/}
|
|
|
|
}
|