From 9da32a625564064908b61530318a1366ffff8217 Mon Sep 17 00:00:00 2001 From: Matt Burke Date: Tue, 8 Sep 2015 10:18:54 -0400 Subject: [PATCH] Add custom_headers to git_push_options --- include/git2/remote.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/git2/remote.h b/include/git2/remote.h index 444fe5276..a39e5a415 100644 --- a/include/git2/remote.h +++ b/include/git2/remote.h @@ -585,6 +585,11 @@ typedef struct { * Callbacks to use for this push operation */ git_remote_callbacks callbacks; + + /** + * Extra headers for this push operation + */ + git_strarray custom_headers; } git_push_options; #define GIT_PUSH_OPTIONS_VERSION 1