From: Oleg Broytman Date: Thu, 9 Nov 2023 10:51:48 +0000 (+0300) Subject: bash_prompt: recurse submodules X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=commitdiff_plain;h=82a8602391583b330a7225432a7a61d3f2a1960b bash_prompt: recurse submodules --- diff --git a/admin/prog/bash_prompt b/admin/prog/bash_prompt index e4b3563..903a58b 100644 --- a/admin/prog/bash_prompt +++ b/admin/prog/bash_prompt @@ -43,6 +43,16 @@ short_curdir() { # https://github.com/necolas/dotfiles/blob/master/shell/bash_prompt and # https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh +_recurse_submodules() { + local command="$@" + local output="$($command 2>/dev/null)" + if [ -n "$output" ]; then + echo -n "$output" + return + fi + git submodule --quiet foreach $command 2>/dev/null +} + prompt_git() { local s="" local branchName="" @@ -57,22 +67,22 @@ prompt_git() { #git update-index --really-refresh -q &>/dev/null # check for unstaged changes - if [ -n "$(git ls-files --modified :/)" ]; then + if [ -n "$(_recurse_submodules git ls-files --modified :/)" ]; then s="$s*"; fi # check for uncommitted changes in the index - if ! $(git diff --quiet --ignore-submodules --cached); then + if [ -n "$(_recurse_submodules git diff --ignore-submodules --cached)" ]; then s="$s+"; fi # check for stashed files - if $(git rev-parse --verify refs/stash &>/dev/null); then + if [ -n "$(_recurse_submodules git rev-parse --verify refs/stash)" ]; then s="$s$"; fi # check for untracked files - if [ -n "$(git ls-files --others --exclude-standard :/)" ]; then + if [ -n "$(_recurse_submodules git ls-files --others --exclude-standard :/)" ]; then s="$s%"; fi