Skip to content

Instantly share code, notes, and snippets.

@st23am
Created June 15, 2012 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save st23am/2937073 to your computer and use it in GitHub Desktop.
Save st23am/2937073 to your computer and use it in GitHub Desktop.
Git branch parsing
function parse_git_dirty {
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment