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@edwardthomson.com>2018-11-30 00:17:04 +0300
committerEdward Thomson <ethomson@edwardthomson.com>2018-11-30 00:17:04 +0300
commit9a90a757f1c5be22ae088c501f74e06a115c777a (patch)
tree87600162d045a8c84b8b6b405f09c6ab277fbe0f
parent9c97dcddaf5eda731462aa56d931266937b257c9 (diff)
GitConfigEntry: add include_depth
Add the `include_depth` field to mirror the libgit2 addition.
-rw-r--r--LibGit2Sharp/Core/GitConfigEntry.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGit2Sharp/Core/GitConfigEntry.cs b/LibGit2Sharp/Core/GitConfigEntry.cs
index 30550126..9eaa9e46 100644
--- a/LibGit2Sharp/Core/GitConfigEntry.cs
+++ b/LibGit2Sharp/Core/GitConfigEntry.cs
@@ -8,6 +8,7 @@ namespace LibGit2Sharp.Core
{
public char* namePtr;
public char* valuePtr;
+ public uint include_depth;
public uint level;
public void* freePtr;
public void* payloadPtr;