From 011f5258adc4a886a76bdb2f0ecaac1412cf29bf Mon Sep 17 00:00:00 2001 From: Mat Date: Tue, 14 Jan 2025 03:18:56 +0100 Subject: [PATCH] fix: LFS locks do not show if user name contains `.` character (#902) --- src/Commands/LFS.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/LFS.cs b/src/Commands/LFS.cs index c9ab7b41..2b7d1de4 100644 --- a/src/Commands/LFS.cs +++ b/src/Commands/LFS.cs @@ -7,7 +7,7 @@ namespace SourceGit.Commands { public partial class LFS { - [GeneratedRegex(@"^(.+)\s+(\w+)\s+\w+:(\d+)$")] + [GeneratedRegex(@"^(.+)\s+([\w.]+)\s+\w+:(\d+)$")] private static partial Regex REG_LOCK(); class SubCmd : Command