Skip to content

Instantly share code, notes, and snippets.

@cjfuller
Created May 28, 2014 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjfuller/8a428f8d9e26db8d0d0c to your computer and use it in GitHub Desktop.
Save cjfuller/8a428f8d9e26db8d0d0c to your computer and use it in GitHub Desktop.
git branch in prompt
### Show the currently active git branch at the command line
function parse_git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/ \(\1\)/"
}
#GREEN="\[\033[0;32m\]"
#NONE="\[\033[0m\]"
export PS1='\u@\h \w\[\033[0;32m\]$(parse_git_branch)\[\033[0m\]$ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment