forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitCloneOptions.cs
More file actions
28 lines (23 loc) · 774 Bytes
/
GitCloneOptions.cs
File metadata and controls
28 lines (23 loc) · 774 Bytes
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
using System;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core
{
[StructLayout(LayoutKind.Sequential)]
internal class GitCloneOptions
{
public uint Version = 1;
public GitCheckoutOpts CheckoutOpts;
public int Bare;
public NativeMethods.git_transfer_progress_callback TransferProgressCallback;
public IntPtr TransferProgressPayload;
public IntPtr RemoteName;
public IntPtr PushUrl;
public IntPtr FetchSpec;
public IntPtr PushSpec;
public NativeMethods.git_cred_acquire_cb CredAcquireCallback;
public IntPtr CredAcquirePayload;
public IntPtr Transport;
public GitRemoteCallbacks RemoteCallbacks;
public int RemoteAutotag;
}
}