git.zsh 487 Bytes
Newer Older
1
2
3
# get the name of the branch we are on
function git_prompt_info() {
  if [[ -d .git ]]; then
4
5
    ref=$(git symbolic-ref HEAD 2> /dev/null) || return
    branch=${ref#refs/heads/}
Robby Russell's avatar
Robby Russell committed
6
    CURRENT_BRANCH="git:(%{$fg[red]%}${branch}%{$fg[blue]%})%{$reset_color%}$(parse_git_dirty)"
7
8
9
10
11
12
13
14
  else
    CURRENT_BRANCH=''
  fi

  echo $CURRENT_BRANCH
}

parse_git_dirty () {
15
  [[ $(git status | tail -n1) != "nothing to commit (working directory clean)" ]] && echo " %{$fg[yellow]%}✗%{$reset_color%}"
16
}