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 6 additions and 0 deletions
Showing only changes of commit 9bbbbb4a52 - Show all commits

View File

@ -6,6 +6,12 @@
typedef int (*gogit_submodule_cbk)(git_submodule *sm, const char *name, void *payload);
void _go_git_apply_init_options(git_apply_options *options)
{
git_apply_options opts = GIT_APPLY_OPTIONS_INIT;
*options = opts;
}
void _go_git_populate_remote_cb(git_clone_options *opts)
{
opts->remote_cb = (git_remote_create_cb)remoteCreateCallback;