DEV Community

Discussion on: Easily get current branch name in git

Collapse
 
plutov profile image
Alex Pliutau

Alias for bash to show current branch in folder:

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