From 3377886baba1ac278a423c38bd25934669edec37 Mon Sep 17 00:00:00 2001 From: leo Date: Fri, 23 May 2025 14:13:48 +0800 Subject: [PATCH] enhance: filter `hint:` blocks Signed-off-by: leo --- src/Commands/Command.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Command.cs b/src/Commands/Command.cs index 2b5a89e4..5d0d5053 100644 --- a/src/Commands/Command.cs +++ b/src/Commands/Command.cs @@ -60,7 +60,7 @@ namespace SourceGit.Commands line.StartsWith("remote: Counting objects:", StringComparison.Ordinal) || line.StartsWith("remote: Compressing objects:", StringComparison.Ordinal) || line.StartsWith("Filtering content:", StringComparison.Ordinal) || - line.StartsWith("hint: ", StringComparison.Ordinal)) + line.StartsWith("hint:", StringComparison.Ordinal)) return; if (REG_PROGRESS().IsMatch(line))