From 7d4453198b55ecc2d9e09b64352edecb5db8b6ef Mon Sep 17 00:00:00 2001 From: michael boulton <61595820+mbfr@users.noreply.github.com> Date: Tue, 18 Aug 2020 17:25:31 +0100 Subject: Add support for creating signed commits and signing commits during a rebase (#626) --- wrapper.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'wrapper.c') diff --git a/wrapper.c b/wrapper.c index 4308ae4..90b0e1e 100644 --- a/wrapper.c +++ b/wrapper.c @@ -12,6 +12,11 @@ void _go_git_populate_apply_cb(git_apply_options *options) options->hunk_cb = (git_apply_hunk_cb)hunkApplyCallback; } +void _go_git_populate_commit_sign_cb(git_rebase_options *opts) +{ + opts->signing_cb = (git_commit_signing_cb)commitSignCallback; +} + void _go_git_populate_remote_cb(git_clone_options *opts) { opts->remote_cb = (git_remote_create_cb)remoteCreateCallback; -- cgit v1.2.3