Git Branch In My Bash Prompt

[Solved] Git Branch In My Bash Prompt | Shell - Code Explorer | yomemimo.com
Question : git branch in my bash prompt

Answered by : krishna-ns0ornr3kgcq

parse_git_branch() { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "

Source : https://coderwall.com/p/fasnya/add-git-branch-name-to-bash-prompt | Last Update : Thu, 14 May 20

Answers related to git branch in my bash prompt

Code Explorer Popular Question For Shell