Skip to content

Instantly share code, notes, and snippets.

@webkod3r
Created January 24, 2018 13:18
Show Gist options
  • Save webkod3r/f16a29098091af39e330e5b9536205a1 to your computer and use it in GitHub Desktop.
Save webkod3r/f16a29098091af39e330e5b9536205a1 to your computer and use it in GitHub Desktop.
parse-git-branch in UNIX terminal
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
PS1='\[\033[0;33m\]\u\[\033[0m\]@\[\033[0;32m\]\h\[\033[0m\]:\[\033[0;34m\]\w\[\033[0m\]$(parse_git_branch)\$ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment