Skip to content

Instantly share code, notes, and snippets.

@mxey
Created November 13, 2015 14:13
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 mxey/070e7411d091382b9cc1 to your computer and use it in GitHub Desktop.
Save mxey/070e7411d091382b9cc1 to your computer and use it in GitHub Desktop.
git_branch_for_prompt () {
branch="$(git rev-parse --abbrev-ref HEAD 2>/dev/null)"
if [ -n "${branch}" ]; then
echo "[$branch] "
fi
}
export PS1='\W $(git_branch_for_prompt)$ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment