Skip to content

Instantly share code, notes, and snippets.

@PhilGeek
Forked from henrik/.bashrc
Created January 16, 2009 02:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PhilGeek/47772 to your computer and use it in GitHub Desktop.
Save PhilGeek/47772 to your computer and use it in GitHub Desktop.
Bash Prompt
# 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
[[ $? == 1 ]] && echo "*"
}
export PS1='\[\e[0;32m\]\w\[\e[1;33m\]$(__git_ps1 "(%s)")$(parse_git_dirty)\[\e[0m\]\n\u $ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment