Skip to content

Instantly share code, notes, and snippets.

@phatduckk
Forked from lenn0x/gist:177871
Created August 31, 2009 18:05
Show Gist options
  • Save phatduckk/178614 to your computer and use it in GitHub Desktop.
Save phatduckk/178614 to your computer and use it in GitHub Desktop.
function parse_git_branch {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
GREEN="\[\033[1;32m\]"
YELLOW="\[\033[1;33m\]"
WHITE="\[\033[0;0m\]"
PS1="[\u@\h [$GREEN\W$YELLOW\$(parse_git_branch)$WHITE]\$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment