You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: LibGit2Sharp/StatusOptions.cs
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,7 @@ public sealed class StatusOptions
35
35
publicStatusOptions()
36
36
{
37
37
DetectRenamesInIndex=true;
38
+
IncludeIgnored=true;
38
39
}
39
40
40
41
/// <summary>
@@ -84,5 +85,14 @@ public StatusOptions()
84
85
/// Unaltered meaning the file is identical in the working directory, the index and HEAD.
85
86
/// </remarks>
86
87
publicboolIncludeUnaltered{get;set;}
88
+
89
+
/// <summary>
90
+
/// Include ignored files when scanning for status
91
+
/// </summary>
92
+
/// <remarks>
93
+
/// ignored meaning present in .gitignore. Defaults to true for back compat but may improve perf to not include if you have thousands of ignored files.
0 commit comments