Created
September 13, 2011 16:34
-
-
Save jtmkrueger/1214262 to your computer and use it in GitHub Desktop.
color your prompt and show git branch
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
#color and git branch | |
parse_git_branch() {·· | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
} | |
export CLICOLOR=1 | |
export GREP_OPTIONS="--color" | |
export LSCOLORS=gxfxcxdxbxegedabagacad | |
PS1='\n\[\e[1;36m\]\w \[\e[m\]\[\e[1;33m\]$(parse_git_branch)\[\e[m\] \n> ' |
you'll see the current brnach your working in next to your path. The regex parses the branch name
That's what I figured / hoped. Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I love the little Apple symbol for the prompt. Thanks! :)
Just for clarification, how exactly does this operate? If you edit a git branch does it automatically change your prompt to show the branch your editing?