Created
November 13, 2015 14:13
-
-
Save mxey/070e7411d091382b9cc1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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