Created
September 15, 2011 13:57
-
-
Save drock/1219284 to your computer and use it in GitHub Desktop.
Bash prompt that will show the current branch you are on and its status against its remote tracking branch if necessary
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
#Add git information to the bash prompt | |
function parse_git_branch { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
branch=$(git status -sb 2> /dev/null | head -1) | |
echo "($branch)" | |
} | |
RED="\[\033[0;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
WHITE="\[\e[m\] \[\e[1;37m\]" | |
PS1="$GREEN\w $YELLOW \$(parse_git_branch)$WHITE\$ " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment