Skip to content

Instantly share code, notes, and snippets.

@chuckbergeron
Created January 30, 2012 20:46
Show Gist options
  • Save chuckbergeron/1706587 to your computer and use it in GitHub Desktop.
Save chuckbergeron/1706587 to your computer and use it in GitHub Desktop.
Add Git branch to terminal (CLI) output
# Customize Prompt
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
export PS1="\[\033[01;30m\]\u@\h\[\033[m\] : \[\033[01;34m\]\w\[\033[m\] \[\033[31m\]\$(parse_git_branch) \[\033[00m\]\$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment