Skip to content

Instantly share code, notes, and snippets.

@rab
Forked from st23am/gist:2937073
Created June 15, 2012 18:27
Show Gist options
  • Save rab/2938025 to your computer and use it in GitHub Desktop.
Save rab/2938025 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