Skip to content

Instantly share code, notes, and snippets.

@liaoyw
Created November 23, 2016 05:35
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 liaoyw/e4560095f185c2075ebb988a21ba4467 to your computer and use it in GitHub Desktop.
Save liaoyw/e4560095f185c2075ebb988a21ba4467 to your computer and use it in GitHub Desktop.
git_branch() {
gb=$(git branch 2>/dev/null | grep '^*' | tr -d '* ')
[[ ! -z $gb ]] && echo "($gb)"
}
export PS1="\\W\$(git_branch) $"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment