Skip to content

Instantly share code, notes, and snippets.

@fengmk2
Created July 4, 2013 08:33
Show Gist options
  • Save fengmk2/5925958 to your computer and use it in GitHub Desktop.
Save fengmk2/5925958 to your computer and use it in GitHub Desktop.
git master
##### git master #####
# https://gist.github.com/120804
# COLORS
LIGHT_GRAY="\[\033[0;37m\]"; BLUE="\[\033[1;36m\]"; RED="\[\033[0;31m\]"; LIGHT_RED="\[\033[1;31m\]";
GREEN="\[\033[0;32m\]"; WHITE="\[\033[1;37m\]"; LIGHT_GRAY="\[\033[0;37m\]"; YELLOW="\[\033[1;33m\]";
# GIT PROMPT (http://gist.github.com/120804)
function parse_git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ \(\1\)/';
}
function parse_git_status {
git status 2> /dev/null | sed -e '/(working directory clean)$/!d' | wc -l;
}
function check_git_changes {
# tput setaf 1 = RED, tput setaf 2 = GREEN
[ `parse_git_status` -ne 1 ] && tput setaf 1 || tput setaf 2
}
export PS1="${debian_chroot:+($debian_chroot)}$BLUE\u@$YELLOW\w\[\$(check_git_changes)\]\$(parse_git_branch)$LIGHT_GRAY $ "
##### git master end #####
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment