We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90dd0a9 commit 3c3035dCopy full SHA for 3c3035d
LibGit2Sharp/RepositoryStatus.cs
@@ -117,6 +117,12 @@ private static GitStatusOptions CreateStatusOptions(StatusOptions options)
117
GitStatusOptionFlags.ExcludeSubmodules;
118
}
119
120
+ if (options.RecurseIgnoredDirs)
121
+ {
122
+ coreOptions.Flags |=
123
+ GitStatusOptionFlags.RecurseIgnoredDirs;
124
+ }
125
+
126
return coreOptions;
127
128
LibGit2Sharp/StatusOptions.cs
@@ -61,5 +61,10 @@ public StatusOptions()
61
/// Exclude submodules from being scanned for status
62
/// </summary>
63
public bool ExcludeSubmodules { get; set; }
64
65
+ /// <summary>
66
+ /// Recurse into ignored directories
67
+ /// </summary>
68
+ public bool RecurseIgnoredDirs { get; set; }
69
70
0 commit comments