Created
June 8, 2011 17:30
-
-
Save tjogin/1014878 to your computer and use it in GitHub Desktop.
.bash_profile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source ~/.bashrc | |
source ~/.git-completion.sh | |
source ~/.colors.sh | |
GIT_PS1_SHOWDIRTYSTATE=1 | |
if [ "\$(type -t __git_ps1)" ]; then | |
#PS1="\h:\w \$(__git_ps1 '(%s)')$" | |
GIT_BRANCH="${BRIGHT_CYAN}\$(__git_ps1 '(${CYAN}%s${BRIGHT_CYAN})')${NORMAL}" | |
PS1="${WHITE}\h:\w $GIT_BRANCH \$ ${RESET}" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment