diff --git a/src/git.cpp b/src/git.cpp index f5936d7..cb6c55e 100644 --- a/src/git.cpp +++ b/src/git.cpp @@ -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)); }