From fe723d4352968207b76f0d23a3d633df69946854 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Thu, 26 Apr 2018 17:25:11 +0100 Subject: [PATCH] More reliable git repo detection --- bash/.bashrc | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/bash/.bashrc b/bash/.bashrc index 249787c..6349cc8 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -83,22 +83,20 @@ function __prompt_command() # check if inside git repo local git_status="`git status -unormal 2>&1`" - if ! [[ "$git_status" =~ Not\ a\ git\ repo ]]; then + if git rev-parse --git-dir > /dev/null 2>&1; then + git_status=$(git status --porcelain) # parse the porcelain output of git status - if [[ "$git_status" =~ nothing\ to\ commit ]]; then + if [[ ! $git_status = *[![:space:]]* ]]; then local Color_On=$GREEN - elif [[ "$git_status" =~ nothing\ added\ to\ commit\ but\ untracked\ files\ present ]]; then + elif [[ $git_status =~ ^\?\? ]]; then local Color_On=$CYAN else local Color_On=$RED fi - if [[ "$git_status" =~ On\ branch\ ([^[:space:]]+) ]]; then - branch=${BASH_REMATCH[1]} - else - # Detached HEAD. (branch=HEAD is a faster alternative.) - branch="(`git describe --all --contains --abbrev=4 HEAD 2> /dev/null || echo HEAD`)" - fi + branch=$(git symbolic-ref -q HEAD) + branch=${branch##refs/heads/} + branch=${branch:-HEAD} # add the result to prompt PS1+="\n\[$Color_On\][$branch]\[$RESET\]\n" -- 2.45.2