Skip to content

Instantly share code, notes, and snippets.

@tj
Created August 7, 2012 19:06
Show Gist options
  • Save tj/3288446 to your computer and use it in GitHub Desktop.
Save tj/3288446 to your computer and use it in GitHub Desktop.
function git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ \(\1\)/'
}
PS1=" λ \W\$(git_branch): "
PS2=" | "
@jbueza
Copy link

jbueza commented Aug 7, 2012

Using this now. This is awesome, thanks!

@paulmillr
Copy link

git symbolic-ref HEAD 2> /dev/null seem to be times faster

@fundon
Copy link

fundon commented Dec 9, 2012

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