Skip to content

Instantly share code, notes, and snippets.

@thadd
Created January 13, 2010 19:21
Show Gist options
  • Save thadd/276501 to your computer and use it in GitHub Desktop.
Save thadd/276501 to your computer and use it in GitHub Desktop.
Embed current git branch into prompt
typeset -ga precmd_functions
precmd_functions+='update_git_branch_prompt'
update_git_branch_prompt() {
RPROMPT=$(git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment