Add following to the .bash_profile:
#for white terminal
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
# Set git autocompletion and PS1 integration
if [ -f /usr/local/git/contrib/completion/git-completion.bash ]; then
. /usr/local/git/contrib/completion/git-completion.bash
fi
GIT_PS1_SHOWDIRTYSTATE=true
if [ -f /opt/local/etc/bash_completion ]; then
. /opt/local/etc/bash_completion
fi
PS1='[\u@\h`__git_ps1` \W]\$ '
enjoy.
thanks to: