git.zsh 420 Bytes
Newer Older
1
2
3
4
5
6
# 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
Geoff Garside's avatar
Geoff Garside committed
7
    CURRENT_BRANCH="(${branch})"
8
9
10
11
12
13
14
15
  else
    CURRENT_BRANCH=''
  fi

  echo $CURRENT_BRANCH
}

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