tekkub (owner)

Forks

Revisions

gist: 5129 Download_button fork
public
Public Clone URL: git://gist.github.com/5129.git
Embed All Files: show embed
.bashrc #
1
2
3
4
5
parse_git_branch() {
  git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
PS1="\w\$(parse_git_branch) $ "