Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Created August 3, 2011 14:38
Show Gist options
  • Save rogeriopvl/1122787 to your computer and use it in GitHub Desktop.
Save rogeriopvl/1122787 to your computer and use it in GitHub Desktop.
My shell prompt with git branch info
function parse_git_branch() {
git_branch=`git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`
if [ $git_branch ]; then
echo "•$git_branch"
fi
}
export PS1='\h:\W\[\033[1;35m\]$(parse_git_branch)\[\033[1;37m\] \u$\[\033[0m\] '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment