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
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ void push()
check(git_remote_lookup(&remote, _repo, "origin"));
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));
}