Answers for "how to add git branch to terminal"

0

add branch to bash-prompt

parse_git_branch() {
     git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* (.*)/ (1)/'
}
export PS1="u@h [33[32m]w[33[33m]$(parse_git_branch)[33[00m] $ "
Posted by: Guest on August-06-2021

Code answers related to "how to add git branch to terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language