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: f773532fea2effca7c9cc91bfe5ba341a225b708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
        CommitSortStrategies SortedBy { get; }
    }
}