Created
February 5, 2011 04:38
-
-
Save skorks/812210 to your computer and use it in GitHub Desktop.
git prompt showing branch and dirty state
This file contains hidden or 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
#put this in .bashrc | |
function parse_git_dirty { | |
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo " *" | |
} | |
export PS1='[\u@\h \W\[\e[1;35m\]$(__git_ps1 " (%s$(parse_git_dirty))")\[\e[0;39m\]]\$ ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment