From 883cda51a08ab7439b4dc6b0b846e2238353bc72 Mon Sep 17 00:00:00 2001 From: Pablo Nardone Date: Thu, 13 Mar 2025 18:32:21 -0300 Subject: [PATCH] Added support for server push options --- LibGit2Sharp/Core/GitPushOptionsWrapper.cs | 1 + LibGit2Sharp/Network.cs | 6 ++++++ LibGit2Sharp/PushOptions.cs | 6 ++++++ 3 files changed, 13 insertions(+) diff --git a/LibGit2Sharp/Core/GitPushOptionsWrapper.cs b/LibGit2Sharp/Core/GitPushOptionsWrapper.cs index 3ccffcf06..b8d79a59c 100644 --- a/LibGit2Sharp/Core/GitPushOptionsWrapper.cs +++ b/LibGit2Sharp/Core/GitPushOptionsWrapper.cs @@ -24,6 +24,7 @@ protected virtual void Dispose(bool disposing) return; this.Options.CustomHeaders.Dispose(); + this.Options.remote_push_options.Dispose(); EncodingMarshaler.Cleanup(Options.ProxyOptions.Url); disposedValue = true; } diff --git a/LibGit2Sharp/Network.cs b/LibGit2Sharp/Network.cs index ba0a33144..f098a96c4 100644 --- a/LibGit2Sharp/Network.cs +++ b/LibGit2Sharp/Network.cs @@ -466,6 +466,12 @@ public virtual void Push(Remote remote, IEnumerable pushRefSpecs, PushOp gitPushOptions.CustomHeaders = GitStrArrayManaged.BuildFrom(pushOptions.CustomHeaders); } + // If there are remot-push-options, create a managed string array. + if (pushOptions.RemotePushOptions != null && pushOptions.RemotePushOptions.Length > 0) + { + gitPushOptions.remote_push_options = GitStrArrayManaged.BuildFrom(pushOptions.RemotePushOptions); + } + Proxy.git_remote_push(remoteHandle, pushRefSpecs, gitPushOptions); diff --git a/LibGit2Sharp/PushOptions.cs b/LibGit2Sharp/PushOptions.cs index 829eb0d60..bf76d8506 100644 --- a/LibGit2Sharp/PushOptions.cs +++ b/LibGit2Sharp/PushOptions.cs @@ -76,5 +76,11 @@ public sealed class PushOptions /// Options for connecting through a proxy. /// public ProxyOptions ProxyOptions { get; set; } = new(); + + /// + /// This string is sent to the server. + /// This parameter is equivalent to the value set in the git command line "--push-options". + /// + public string[] RemotePushOptions { get; set; } } }