jnstq (owner)

Revisions

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