More diff functionality #629

Merged
mbfr merged 24 commits from feature-diff-extra into master 2020-08-18 08:14:03 -05:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 2edef4dbea - Show all commits

View File

@ -14,8 +14,8 @@ void _go_git_apply_init_options(git_apply_options *options)
void _go_git_populate_apply_cb(git_apply_options *options)
{
options->delta_cb = (git_apply_delta_cb)deltaApplyCallback;
options->hunk_cb = (git_apply_hunk_cb)hunkApplyCallback;
options->delta_cb = (git_apply_delta_cb)deltaApplyCallback;
options->hunk_cb = (git_apply_hunk_cb)hunkApplyCallback;
}
void _go_git_populate_remote_cb(git_clone_options *opts)