-
Notifications
You must be signed in to change notification settings - Fork 892
/
Copy pathCommitSortStrategies.cs
39 lines (35 loc) · 1.08 KB
/
CommitSortStrategies.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
using System;
namespace LibGit2Sharp
{
/// <summary>
/// Determines the sorting strategy when iterating through the commits of the repository
/// </summary>
[Flags]
public enum CommitSortStrategies
{
/// <summary>
/// Sort the commits in no particular ordering;
/// this sorting is arbitrary, implementation-specific
/// and subject to change at any time.
/// </summary>
None = 0,
/// <summary>
/// Sort the commits in topological order
/// (parents before children); this sorting mode
/// can be combined with time sorting.
/// </summary>
Topological = (1 << 0),
/// <summary>
/// Sort the commits by commit time;
/// this sorting mode can be combined with
/// topological sorting.
/// </summary>
Time = (1 << 1),
/// <summary>
/// Iterate through the commits in reverse
/// order; this sorting mode can be combined with
/// any of the above.
/// </summary>
Reverse = (1 << 2)
}
}