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

GitCloneOptions.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 669d15d21cdc8a3cf0de8a28460d069ad5e3a139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Runtime.InteropServices;

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal class GitCloneOptions
    {
        public uint Version = 1;

        public GitCheckoutOpts CheckoutOpts;
        public GitRemoteCallbacks RemoteCallbacks;

        public int Bare;
        public int IgnoreCertErrors;

        public IntPtr RemoteName;
        public IntPtr CheckoutBranch;
    }
}