-
Notifications
You must be signed in to change notification settings - Fork 896
/
Copy pathCompareOptions.cs
79 lines (70 loc) · 2.48 KB
/
CompareOptions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
using System;
namespace LibGit2Sharp
{
/// <summary>
/// Represents a mode for handling whitespace while making diff.
/// </summary>
public enum DiffWhitespaceMode
{
/// <summary>
/// Ignore all whitespace
/// </summary>
IgnoreAllWhitespaces,
/// <summary>
/// Ignore changes in amount of whitespace
/// </summary>
IgnoreWhitespaceChange,
/// <summary>
/// Ignore whitespace at end of line
/// </summary>
IgnoreWhitespaceEol
}
/// <summary>
/// Options to define file comparison behavior.
/// </summary>
public sealed class CompareOptions
{
/// <summary>
/// Initializes a new instance of the <see cref="CompareOptions"/> class.
/// </summary>
public CompareOptions()
{
ContextLines = 3;
InterhunkLines = 0;
Algorithm = DiffAlgorithm.Myers;
}
/// <summary>
/// The number of unchanged lines that define the boundary of a hunk (and to display before and after).
/// (Default = 3)
/// </summary>
public int ContextLines { get; set; }
/// <summary>
/// The maximum number of unchanged lines between hunk boundaries before the hunks will be merged into a one.
/// (Default = 0)
/// </summary>
public int InterhunkLines { get; set; }
/// <summary>
/// Options for rename detection. If null, the `diff.renames` configuration setting is used.
/// </summary>
public SimilarityOptions Similarity { get; set; }
/// <summary>
/// Represents a mode for handling whitespace while making diff.
/// By default is null - it means no extra flag is passed
/// </summary>
public DiffWhitespaceMode? WhitespaceMode { get; set; }
/// <summary>
/// Include "unmodified" entries in the results.
/// </summary>
public bool IncludeUnmodified { get; set; }
/// <summary>
/// Algorithm to be used when performing a Diff.
/// By default, <see cref="DiffAlgorithm.Myers"/> will be used.
/// </summary>
public DiffAlgorithm Algorithm { get; set; }
/// <summary>
/// Enable --indent-heuristic Diff option, that attempts to produce more aesthetically pleasing diffs.
/// By default, this option will be false.
/// </summary>
public bool IndentHeuristic { get; set; }
}
}