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:
authorJameson Miller <jamill@microsoft.com>2012-10-17 00:34:00 +0400
committernulltoken <emeric.fermas@gmail.com>2012-10-17 12:16:57 +0400
commit93ef4790ac966c673dd760fb318ce9505071c9cc (patch)
treeb9f09184b186238c5f2df1926c8034a1a85cab83 /LibGit2Sharp/RemoteCompletionType.cs
parentbe2be63d106e00cbbe392600b5ff56a29cd960d9 (diff)
Add ability to fetch from remotes.
Diffstat (limited to 'LibGit2Sharp/RemoteCompletionType.cs')
-rw-r--r--LibGit2Sharp/RemoteCompletionType.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/LibGit2Sharp/RemoteCompletionType.cs b/LibGit2Sharp/RemoteCompletionType.cs
new file mode 100644
index 00000000..3d55b27e
--- /dev/null
+++ b/LibGit2Sharp/RemoteCompletionType.cs
@@ -0,0 +1,25 @@
+using System;
+
+namespace LibGit2Sharp
+{
+ /// <summary>
+ /// git_remote_completion types.
+ /// </summary>
+ public enum RemoteCompletionType
+ {
+ /// <summary>
+ /// Download.
+ /// </summary>
+ Download = 0, /* GIT_REMOTE_COMPLETION_DOWNLOAD */
+
+ /// <summary>
+ /// Indexing.
+ /// </summary>
+ Indexing, /* GIT_REMOTE_COMPLETION_INDEXING */
+
+ /// <summary>
+ /// Error.
+ /// </summary>
+ Error, /* GIT_REMOTE_COMPLETION_ERROR */
+ }
+}