From c73f775aa5cf1e446a92eeb345176062c0fe51c1 Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 21 May 2025 20:47:10 +0800 Subject: [PATCH] enhance: mark submodule having local changes even if there are only untracked files (#1344) Signed-off-by: leo --- src/Commands/QuerySubmodules.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/QuerySubmodules.cs b/src/Commands/QuerySubmodules.cs index 86147f97..663c0ea0 100644 --- a/src/Commands/QuerySubmodules.cs +++ b/src/Commands/QuerySubmodules.cs @@ -112,7 +112,7 @@ namespace SourceGit.Commands } } - Args = $"--no-optional-locks status -uno --porcelain -- {builder}"; + Args = $"--no-optional-locks status --porcelain -- {builder}"; rs = ReadToEnd(); if (!rs.IsSuccess) return submodules;