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:
authorEdward Thomson <ethomson@microsoft.com>2014-01-09 22:08:08 +0400
committerEdward Thomson <ethomson@microsoft.com>2014-01-09 22:08:08 +0400
commit8077fd2f94aaec2e12a51d6844c0095314b13e1b (patch)
tree7b18e664df7493b6ca8b261065a2c699a5419b40
parent7df7b96a7ace321914fd9048deca61bf983ba1d3 (diff)
Update error categories to match libgit2
-rw-r--r--LibGit2Sharp/Core/GitErrorCategory.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/LibGit2Sharp/Core/GitErrorCategory.cs b/LibGit2Sharp/Core/GitErrorCategory.cs
index 6782871c..66e10cba 100644
--- a/LibGit2Sharp/Core/GitErrorCategory.cs
+++ b/LibGit2Sharp/Core/GitErrorCategory.cs
@@ -3,6 +3,7 @@ namespace LibGit2Sharp.Core
internal enum GitErrorCategory
{
Unknown = -1,
+ None,
NoMemory,
Os,
Invalid,
@@ -27,5 +28,7 @@ namespace LibGit2Sharp.Core
Merge,
Ssh,
Filter,
+ Revert,
+ Callback,
}
}