Created
May 4, 2011 20:16
-
-
Save romac/955941 to your computer and use it in GitHub Desktop.
Git branch in PS1
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
parse_git_branch() | |
{ | |
if [[ -d ./.git ]]; then | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ \[\1\]/' | |
fi | |
} | |
PS1='\[\033[01;37m\]\w\[\033[00;35m\]$(parse_git_branch)\[\033[00m\] \$ ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment