mss (owner)

Forks

Revisions

gist: 129278 Download_button fork
public
Description:
Append this to your .bashrc to have the current Git branch prepended to your Bash prompt
Public Clone URL: git://gist.github.com/129278.git
.bashrc
1
2
3
if [ "$(type -t __git_ps1)" ]; then
    PS1="\$(__git_ps1 '(%s)')$PS1"
fi