Skip to content

Instantly share code, notes, and snippets.

@nch3v
Last active January 29, 2018 20:39
Show Gist options
  • Save nch3v/a57f47fd9e96ca8cf03b38296d15647c to your computer and use it in GitHub Desktop.
Save nch3v/a57f47fd9e96ca8cf03b38296d15647c to your computer and use it in GitHub Desktop.
Yet another git prompt
# to add at the end of ~/.bashrc
RED="\[\033[0;31m\]"
YELLOW="\[\033[0;33m\]"
GREEN="\[\033[0;32m\]"
BLUE="\[\033[0;34m\]"
LIGHT_RED="\[\033[1;31m\]"
LIGHT_GREEN="\[\033[1;32m\]"
WHITE="\[\033[1;37m\]"
LIGHT_GRAY="\[\033[0;37m\]"
COLOR_NONE="\[\e[0m\]"
function parse_git_branch {
git rev-parse --git-dir &> /dev/null
git_status="$(LANG=en_US.UTF-8 git status 2> /dev/null)"
branch_pattern="^On branch ([^${IFS}]*)"
remote_pattern="Your branch is (.*) '"
diverge_pattern="Your branch and (.*) have diverged"
if [[ ! ${git_status}} =~ "working tree clean" ]]; then
state="${RED}⚡"
fi
# add an else if or two here if you want to get more specific
if [[ ${git_status} =~ ${remote_pattern} ]]; then
if [[ ${BASH_REMATCH[1]} == "ahead of" ]]; then
remote="${YELLOW}↑"
fi
if [[ ${BASH_REMATCH[1]} == "behind" ]]; then
remote="${YELLOW}↓"
fi
fi
if [[ ${git_status} =~ ${diverge_pattern} ]]; then
remote="${YELLOW}↕"
fi
if [[ ${git_status} =~ ${branch_pattern} ]]; then
branch=${BASH_REMATCH[1]}
echo " (${branch})${remote}${state}"
fi
}
function git_dirty_flag {
git status 2> /dev/null | grep -c : | awk '{if ($1 > 0) print "⚡"}'
}
function prompt_func() {
previous_return_value=$?;
#The lowercase w is the full current working directory
prompt="${TITLEBAR}${BLUE}[${LIGHT_GRAY}\w${GREEN}$(parse_git_branch)${BLUE}]${COLOR_NONE}"
#Capital W is just the trailing part of the current working directory
#prompt="${TITLEBAR}${BLUE}[${LIGHT_GRAY}\W${GREEN}$(parse_git_branch)${BLUE}]${COLOR_NONE}"
if test $previous_return_value -eq 0
then
PS1="${prompt}> "
else
PS1="${prompt}${RED}>${COLOR_NONE} "
fi
}
PROMPT_COMMAND=prompt_func
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment