# a mettre dans votre .bashrc parse_git_branch() { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' } export PS1="\h:\w\$(parse_git_branch) $ "