Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GitSortOptions.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d56f979520bca6afb1a11ff5afac0eac12d61259 (plain)
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 content of the repository
    /// </summary>
    [Flags]
    public enum GitSortOptions
    {
        /// <summary>
        ///   Sort the repository contents in no particular ordering;
        ///   this sorting is arbitrary, implementation-specific
        ///   and subject to change at any time.
        /// </summary>
        None = 0,

        /// <summary>
        ///   Sort the repository contents in topological order
        ///   (parents before children); this sorting mode
        ///   can be combined with time sorting.
        /// </summary>
        Topological = (1 << 0),

        /// <summary>
        ///   Sort the repository contents by commit time;
        ///   this sorting mode can be combined with
        ///   topological sorting.
        /// </summary>
        Time = (1 << 1),

        /// <summary>
        ///   Iterate through the repository contents in reverse
        ///   order; this sorting mode can be combined with
        ///   any of the above.
        /// </summary>
        Reverse = (1 << 2)
    }
}