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

GitFetchOptions.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02f996dff4a2fda964541b2d96dfd6d7a857856f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Runtime.InteropServices;

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal class GitFetchOptions
    {
        public int Version = 1;
        public GitRemoteCallbacks RemoteCallbacks;
        public FetchPruneStrategy Prune;
        public bool UpdateFetchHead = true;
        public TagFetchMode download_tags;
    }
}