Skip to content

Instantly share code, notes, and snippets.

View aarondelani's full-sized avatar

Aaron Delani aarondelani

View GitHub Profile
@aarondelani
aarondelani / .bash_profile
Created October 5, 2011 00:34
Git Completion Script
source ~/.git-completion.sh
# Show branch dirty state in git autocompletion script
export GIT_PS1_SHOWDIRTYSTATE="true";
# Show upstream state
export GIT_PS1_SHOWUPSTREAM="verbose"
export PS1='\[\033[00;35m\]\@ \[\033[01;36m\]\u \[$(tput sgr0)\]\[\033[31m\]\h : $(__git_ps1 " (%s)") \[\033[01;36m\] \w\n\[\033[36m\]\$\[\033[00m\] '
export TERM="xterm-color"