Skip to content

Instantly share code, notes, and snippets.

@ih2502mk
Created November 5, 2012 16:08
Show Gist options
  • Save ih2502mk/4018012 to your computer and use it in GitHub Desktop.
Save ih2502mk/4018012 to your computer and use it in GitHub Desktop.
current git br in command line
function parse_git_branch () {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
BLUE="\[\033[0;36m\]"
DARK_BLUE="\[\033[1;34m\]"
RED="\[\033[0;31m\]"
DARK_RED="\[\033[1;31m\]"
YELLOW="\[\033[0;33m\]"
GREEN="\[\033[0;32m\]"
GRAY="\[\033[1;30m\]"
LIGHT_GRAY="\[\033[0;37m\]"
NO_COLOR="\[\033[0m\]"
PS1="$LIGHT_GRAY\u@\h$NO_COLOR:\w$YELLOW\$(parse_git_branch)$NO_COLOR\$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment