forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilter.cs
More file actions
46 lines (43 loc) · 1.91 KB
/
Copy pathFilter.cs
File metadata and controls
46 lines (43 loc) · 1.91 KB
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
namespace LibGit2Sharp
{
/// <summary>
/// Criterias used to filter out and order the commits of the repository when querying its history.
/// </summary>
public class Filter
{
/// <summary>
/// Initializes a new instance of <see cref = "Filter" />.
/// </summary>
public Filter()
{
SortBy = GitSortOptions.Time;
Since = "HEAD";
}
/// <summary>
/// The ordering stragtegy to use.
/// <para>
/// By default, the commits are shown in reverse chronological order.
/// </para>
/// </summary>
public GitSortOptions SortBy { get; set; }
/// <summary>
/// A pointer to a commit object or a list of pointers to consider as starting points.
/// <para>
/// Can be either a <see cref = "string" /> containing the sha or reference canonical name to use,
/// a <see cref = "Branch" />, a <see cref = "Reference" />, a <see cref = "Commit" />, a <see cref = "Tag" />
/// or a <see cref = "TagAnnotation" /> or even a mixed collection of all of the above.
/// By default, the <see cref = "Repository.Head" /> will be used as boundary.
/// </para>
/// </summary>
public object Since { get; set; }
/// <summary>
/// A pointer to a commit object or a list of pointers which will be excluded (along with ancestors) from the enumeration.
/// <para>
/// Can be either a <see cref = "string" /> containing the sha or reference canonical name to use,
/// a <see cref = "Branch" />, a <see cref = "Reference" />, a <see cref = "Commit" />, a <see cref = "Tag" />
/// or a <see cref = "TagAnnotation" /> or even a mixed collection of all of the above.
/// </para>
/// </summary>
public object Until { get; set; }
}
}