Skip to content

Instantly share code, notes, and snippets.

@stefaneng
Last active December 25, 2015 09:59
Show Gist options
  • Save stefaneng/6958370 to your computer and use it in GitHub Desktop.
Save stefaneng/6958370 to your computer and use it in GitHub Desktop.
Get the current git branch in the working directory. Use in PS1 or something.
function get_branch() {
git branch --no-color 2>/dev/null | awk '/\*/ {print $2}'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment