Created
August 7, 2012 19:06
-
-
Save tj/3288446 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
function git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ \(\1\)/' | |
} | |
PS1=" λ \W\$(git_branch): " | |
PS2=" | " |
git symbolic-ref HEAD 2> /dev/null
seem to be times faster
git symbolic-ref --short HEAD 2> /dev/null shorten the value
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using this now. This is awesome, thanks!