
Git branch config to terminal
Add this to your .bashrc
or .zshrc
file:
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/\* \(.\_\)/(\1)/'
}
export PS1="\u@\h \[\e[32m\]\w \[\e[91m\]\$(parse_git_branch)\[\e[00m\]$ "
save and reload the file
source ~/.bashrc
or
source ~/.zshrc