From 5ede10f80ee99f4f49b474abd7c8f39d9358fd1f Mon Sep 17 00:00:00 2001 From: Brian Gillespie Date: Wed, 28 Oct 2015 11:05:23 -0700 Subject: [PATCH] Add CustomHeaders member to GitPushOptions Fix #1217 Matches underlying c struct for marshalling --- LibGit2Sharp/Core/GitPushOptions.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/LibGit2Sharp/Core/GitPushOptions.cs b/LibGit2Sharp/Core/GitPushOptions.cs index d4bbcdc3f..075a62b6b 100644 --- a/LibGit2Sharp/Core/GitPushOptions.cs +++ b/LibGit2Sharp/Core/GitPushOptions.cs @@ -8,5 +8,6 @@ internal class GitPushOptions public int Version = 1; public int PackbuilderDegreeOfParallelism; public GitRemoteCallbacks RemoteCallbacks; + public GitStrArrayManaged CustomHeaders; } }