Git: Veja o nome do branch atual no prompt do terminal

Adicione o seguinte ao seu ~ .bash_profile

function git-branch-name {
git symbolic
-ref HEAD 2>/dev/null | cut -d"/" -f 3-8
}
function git-branch-prompt {
local branch=`git-branch-name`
if [ $branch ]; then printf " [%s]" $branch; fi
}
PS1
="u@h [33[0;36m]W[33[0m][33[0;32m]$(git-branch-prompt)[33[0m] $ "

Esperar resultado

[feature/git_branch_name] $>