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/CompareOptions.cs
+29
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,29 @@
2
2
3
3
namespaceLibGit2Sharp
4
4
{
5
+
/// <summary>
6
+
/// Represents a mode for handling whitespace while creating a patch.
7
+
/// </summary>
8
+
publicenumPatchWhitespaceMode
9
+
{
10
+
/// <summary>
11
+
/// Do not ignore changes in whitespace when comparing lines.
12
+
/// </summary>
13
+
DontIgnoreWhitespace=0,
14
+
/// <summary>
15
+
/// Ignore whitespace when comparing lines. This ignores differences even if one line has whitespace where the other line has none.
16
+
/// </summary>
17
+
IgnoreAllWhitespace=1,
18
+
/// <summary>
19
+
/// Ignore changes in amount of whitespace. This ignores whitespace at line end, and considers all other sequences of one or more whitespace characters to be equivalent.
0 commit comments