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

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/Core/GitCloneOptions.cs')
-rw-r--r--LibGit2Sharp/Core/GitCloneOptions.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/LibGit2Sharp/Core/GitCloneOptions.cs b/LibGit2Sharp/Core/GitCloneOptions.cs
index f3d87cb9..915c56b1 100644
--- a/LibGit2Sharp/Core/GitCloneOptions.cs
+++ b/LibGit2Sharp/Core/GitCloneOptions.cs
@@ -3,6 +3,14 @@ using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core
{
+ internal enum GitCloneLocal
+ {
+ CloneLocalAuto,
+ CloneLocal,
+ CloneNoLocal,
+ CloneLocalNoLinks
+ }
+
[StructLayout(LayoutKind.Sequential)]
internal struct GitCloneOptions
{
@@ -13,6 +21,7 @@ namespace LibGit2Sharp.Core
public int Bare;
public int IgnoreCertErrors;
+ public GitCloneLocal Local;
public IntPtr RemoteName;
public IntPtr CheckoutBranch;