A colleague just shared this tip with me to have my Mac command prompt tell me which git branch I'm in: Put the following in your .bash_profile
function parse_git_branch () {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\h:\W \u\$(parse_git_branch)\$ "
Now my command prompt looks like this in a git directory: belldev2:docroot barnettech (master)$