Skip to content

Instantly share code, notes, and snippets.

@pgib
Created August 24, 2010 20:22
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 pgib/548239 to your computer and use it in GitHub Desktop.
Save pgib/548239 to your computer and use it in GitHub Desktop.
# add this into your ~/.bash_profile
# git branch highlighting
function parse_git_branch
{
branch=`git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'`
if [ -n "$branch" ]; then
echo "${branch} "
fi
}
function proml
{
local WHITE="\[\033[1;37m\]"
local LIGHT_GREY="\[\033[0;37m\]"
local RED="\[\033[0;31m\]"
PS1="$RED\$(parse_git_branch)$LIGHT_GREY\u@\h\w\$ "
}
proml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment