Skip to content

Instantly share code, notes, and snippets.

View the-creature's full-sized avatar

Liccy Creature the-creature

  • Fuentes Innovation
  • Los Angeles, CA
View GitHub Profile
@the-creature
the-creature / gist:d8fa4dbec135dfd6b63e
Created December 10, 2014 05:10
Show Current GIT Branch on terminal
# add to .profile file
function parse_git_branch () {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
RED="\[\033[0;31m\]"
YELLOW="\[\033[0;33m\]"
GREEN="\[\033[0;32m\]"
NO_COLOUR="\[\033[0m\]"