Pointer in which to store the OID of the newly created commit
The rebase that is in-progress
The author of the updated commit, or null to keep the author from the original commit
The committer of the rebase
The encoding for the message in the commit, represented with a standard encoding name. If message is null, this should also be null, and the encoding from the original commit will be maintained. If message is specified, this may be null to indicate that "UTF-8" is to be used.
The message for this commit, or null to use the message from the original commit.
Zero on success, git_error_code.GIT_EUNMERGED if there are unmerged changes in the index, git_error_code.GIT_EAPPLIED if the current commit has already been applied to the upstream and there is nothing to commit, -1 on failure.
Commits the current patch. You must have resolved any conflicts that were introduced during the patch application from the git_rebase_next invocation.