Skip to content

Instantly share code, notes, and snippets.

@dropmeaword
Created February 26, 2013 16:21
Show Gist options
  • Save dropmeaword/5039764 to your computer and use it in GitHub Desktop.
Save dropmeaword/5039764 to your computer and use it in GitHub Desktop.
Show git branch on CLI prompt
function parse_git_branch () {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
YELLOW="\[\033[0;33m\]"
# Comment in the above and uncomment this below for a color prompt
PS1="${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w$Y$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment