cameroncox (owner)

Revisions

gist: 115843 Download_button fork
public
Public Clone URL: git://gist.github.com/115843.git
Bash
1
2
3
4
5
6
7
function parse_git_branch
{
        ref=$(git symbolic-ref HEAD 2> /dev/null) || return
echo "("${ref#refs/heads/}") "
}
 
PS1="\u:\W \$(parse_git_branch)$ "