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

ICommitLog.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 652e6832a41d5b4bb5c16757cb78b65ed57d1760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;

namespace LibGit2Sharp
{
    /// <summary>
    ///   A log of commits in a <see cref = "Repository" />.
    /// </summary>
    public interface ICommitLog : IEnumerable<Commit>
    {
        /// <summary>
        ///   Gets the current sorting strategy applied when enumerating the log.
        /// </summary>
        GitSortOptions SortedBy { get; }
    }
}