Skip to content

Instantly share code, notes, and snippets.

@vitaliisili
Created February 16, 2023 22:15
Show Gist options
  • Save vitaliisili/ccd910a71adcf02a82eaae960ad16cbf to your computer and use it in GitHub Desktop.
Save vitaliisili/ccd910a71adcf02a82eaae960ad16cbf to your computer and use it in GitHub Desktop.
# Add git branch in bash
function parse_git_branch () {
# The line below is changed.
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ \(\1)/'
}
RED="\[\033[01;31m\]"
YELLOW="\[\033[01;33m\]"
GREEN="\[\033[01;32m\]"
BLUE="\[\033[01;34m\]"
NO_COLOR="\[\033[00m\]"
# without host
#PS1="$GREEN\u$NO_COLOR:$BLUE\w$YELLOW\$(parse_git_branch)$NO_COLOR\$ "
# with host
PS1="$GREEN\u@\h$NO_COLOR:$BLUE\w$YELLOW\$(parse_git_branch)$NO_COLOR\$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment