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/GitFetchOptions.cs')
-rw-r--r--LibGit2Sharp/Core/GitFetchOptions.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/LibGit2Sharp/Core/GitFetchOptions.cs b/LibGit2Sharp/Core/GitFetchOptions.cs
new file mode 100644
index 00000000..02f996df
--- /dev/null
+++ b/LibGit2Sharp/Core/GitFetchOptions.cs
@@ -0,0 +1,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;
+ }
+}