Skip to content

Instantly share code, notes, and snippets.

@montague
Created July 30, 2012 20:04
Show Gist options
  • Save montague/3209712 to your computer and use it in GitHub Desktop.
Save montague/3209712 to your computer and use it in GitHub Desktop.
bash prompt
#shows ruby version, current dir, current branch
export PS1="\[\e[0m\][\$(~/.rvm/bin/rvm-prompt i v g)]\[\e[1;36m\]\$(parse_git_branch)\[\e[0m\]:\W$ \[\e[0;91m\]"
parse_git_branch() {
git branch 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