We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a8b1f0 commit 95ec0b7Copy full SHA for 95ec0b7
LibGit2Sharp/Core/GitErrorCategory.cs
@@ -34,6 +34,8 @@ internal enum GitErrorCategory
34
Describe,
35
Rebase,
36
Filesystem,
37
- Patch
+ Patch,
38
+ Worktree,
39
+ Sha1
40
}
41
LibGit2Sharp/Core/GitErrorCode.cs
@@ -125,5 +125,15 @@ internal enum GitErrorCode
125
/// There are no more entries left to iterate.
126
/// </summary>
127
IterOver = -31,
128
+
129
+ /// <summary>
130
+ /// Internal-only.
131
+ /// </summary>
132
+ Retry = -32,
133
134
135
+ /// A retrieved object did not match its expected ID.
136
137
+ Mismatch = -33,
138
139
0 commit comments