1 2 3 4 |
parse_git_branch
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
PS1="\w\$(parse_git_branch) $ "
|
Pastie
Show Pastie some love
or read my new blog
1 2 3 4 |
parse_git_branch
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
PS1="\w\$(parse_git_branch) $ "
|