summaryrefslogtreecommitdiff
path: root/lib/git.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git.zsh')
-rw-r--r--lib/git.zsh13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/git.zsh b/lib/git.zsh
index 640561e97..e8ef0d78d 100644
--- a/lib/git.zsh
+++ b/lib/git.zsh
@@ -17,6 +17,19 @@ function parse_git_dirty() {
if [[ "$DISABLE_UNTRACKED_FILES_DIRTY" == "true" ]]; then
FLAGS+='--untracked-files=no'
fi
+ case "$GIT_STATUS_IGNORE_SUBMODULES" in
+ "")
+ # if unset: ignore dirty submodules
+ FLAGS+="--ignore-submodules=dirty"
+ ;;
+ "git")
+ # let git decide (this respects per-repo config in .gitmodules)
+ ;;
+ *)
+ # other values are passed to --ignore-submodules
+ FLAGS+="--ignore-submodules=$GIT_STATUS_IGNORE_SUBMODULES"
+ ;;
+ esac
STATUS=$(command git status ${FLAGS} 2> /dev/null | tail -n1)
fi
if [[ -n $STATUS ]]; then