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:
authornulltoken <emeric.fermas@gmail.com>2015-11-13 00:17:54 +0300
committernulltoken <emeric.fermas@gmail.com>2015-11-13 00:17:54 +0300
commitf8c944be073b787f4d45e59a91ecb571ade33e40 (patch)
tree2a8133e0f9db6a845d9a3011a802b87cd6e61d57
parent28f1bbc10f4f50eb437dcb9aa041dab3850754f5 (diff)
parent5ede10f80ee99f4f49b474abd7c8f39d9358fd1f (diff)
Merge pull request #1233 from golsby/1217-push-opts-custom-headers
Add CustomHeaders member to GitPushOptions
-rw-r--r--LibGit2Sharp/Core/GitPushOptions.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGit2Sharp/Core/GitPushOptions.cs b/LibGit2Sharp/Core/GitPushOptions.cs
index d4bbcdc3..075a62b6 100644
--- a/LibGit2Sharp/Core/GitPushOptions.cs
+++ b/LibGit2Sharp/Core/GitPushOptions.cs
@@ -8,5 +8,6 @@ namespace LibGit2Sharp.Core
public int Version = 1;
public int PackbuilderDegreeOfParallelism;
public GitRemoteCallbacks RemoteCallbacks;
+ public GitStrArrayManaged CustomHeaders;
}
}