This commit is contained in:
tastytea 2020-07-01 10:48:12 +02:00
parent 90545b0681
commit da01142052
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07

View File

@ -202,7 +202,7 @@ void push()
check(git_remote_lookup(&remote, _repo, "origin")); check(git_remote_lookup(&remote, _repo, "origin"));
check(git_push_options_init(&options, GIT_PUSH_OPTIONS_VERSION)); check(git_push_options_init(&options, GIT_PUSH_OPTIONS_VERSION));
options.callbacks.credentials = cred_aquire; options.callbacks.credentials = cred_acquire;
check(git_remote_push(remote, &refspecs, &options)); check(git_remote_push(remote, &refspecs, &options));
} }