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
# http://henrik.nyh.se/2008/12/git-dirty-prompt | |
# http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/ | |
# Multi-line prompt that uses the function __git_ps1 provided by .git-completion.sh to parse the branch. | |
# ~/dev/dir(master} | |
# username $ # clean working directory | |
# ~/dev/dir(master)* | |
# username $ # dirty working directory | |
function parse_git_dirty { | |
git diff --quiet HEAD &>/dev/null |