Add support for creating signed commits and signing commits during a rebase #626

Merged
mbfr merged 25 commits from master into master 2020-08-18 11:25:31 -05:00
1 changed files with 0 additions and 1 deletions
Showing only changes of commit 87253ae40d - Show all commits

View File

@ -160,7 +160,6 @@ func rebaseOptionsFromC(opts *C.git_rebase_options) RebaseOptions {
RewriteNotesRef: C.GoString(opts.rewrite_notes_ref), RewriteNotesRef: C.GoString(opts.rewrite_notes_ref),
MergeOptions: mergeOptionsFromC(&opts.merge_options), MergeOptions: mergeOptionsFromC(&opts.merge_options),
CheckoutOptions: checkoutOptionsFromC(&opts.checkout_options), CheckoutOptions: checkoutOptionsFromC(&opts.checkout_options),
// TODO: is it possible to take the callback from C and have it be meaningful in Go? Would we ever want to do it?
} }
} }