This repository was archived by the owner on Dec 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/UnityExtension/Assets/Editor/GitHub.Unity/Misc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ class Utility : ScriptableObject
15
15
16
16
public const string StatusRenameDivider = "->" ;
17
17
public static readonly Regex ListBranchesRegex =
18
- new Regex ( @"^(?<active>\*)?\s+(?<name>[\w\d\/\-\ _]+)\s*(?:[a-z|0-9]{7} \[(?<tracking>[\w\d\/\-\_]+)\])?" ) ;
18
+ new Regex ( @"^(?<active>\*)?\s+(?<name>[\w\d\/\-_]+)\s*(?:[a-z|0-9]{7} \[(?<tracking>[\w\d\/\-\_]+)\])?" ) ;
19
19
public static readonly Regex ListRemotesRegex =
20
- new Regex ( @"(?<name>[\w\d\-\ _]+)\s+(?<url>https?:\/\/(?<login>(?<user>[\w\d]+)(?::(?<token>[\w\d]+))?)@(?<host>[\w\d\.\/\%]+))\s+\((?<function>fetch|push)\)" ) ;
20
+ new Regex ( @"(?<name>[\w\d\-_]+)\s+(?<url>https?:\/\/(?<login>(?<user>[\w\d]+)(?::(?<token>[\w\d]+))?)@(?<host>[\w\d\.\/\%]+))\s+\((?<function>fetch|push)\)" ) ;
21
21
public static readonly Regex LogCommitRegex = new Regex ( @"commit\s(\S+)" ) ;
22
22
public static readonly Regex LogMergeRegex = new Regex ( @"Merge:\s+(\S+)\s+(\S+)" ) ;
23
23
public static readonly Regex LogAuthorRegex = new Regex ( @"Author:\s+(.+)\s<(.+)>" ) ;
You can’t perform that action at this time.
0 commit comments