2009-08-28 20:14:17 +02:00
|
|
|
# get the name of the branch we are on
|
|
|
|
function git_prompt_info() {
|
|
|
|
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
|
|
|
|
branch=${ref#refs/heads/}
|
|
|
|
|
|
|
|
if [[ -d .git ]]; then
|
2009-08-31 15:01:39 +02:00
|
|
|
CURRENT_BRANCH="(${branch})"
|
2009-08-28 20:14:17 +02:00
|
|
|
else
|
|
|
|
CURRENT_BRANCH=''
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo $CURRENT_BRANCH
|
|
|
|
}
|
|
|
|
|
|
|
|
parse_git_dirty () {
|
|
|
|
[[ $(git status | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "%{$fg[white] ♻ "
|
|
|
|
}
|