Skip to content

Instantly share code, notes, and snippets.

@guihatano
Created August 30, 2021 14:39
Show Gist options
  • Save guihatano/7ee3dedc902ebed28acdfec6cdccd614 to your computer and use it in GitHub Desktop.
Save guihatano/7ee3dedc902ebed28acdfec6cdccd614 to your computer and use it in GitHub Desktop.
git bash show branch name
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
export PS1="\e[01;32m\]\u@\h \[\e[01;34m\]\w \[\e[91m\]\$(parse_git_branch)\[\e[00m\]$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment