git_commit_committer_with_mailmap

Get the committer of a commit, using the mailmap to map names and email addresses to canonical real names and email addresses.

Call git_signature_free to free the signature.

extern (C) nothrow @nogc public
int
git_commit_committer_with_mailmap

Parameters

out_ libgit2.types.git_signature**

a pointer to store the resolved signature.

commit const(libgit2.types.git_commit)*

a previously loaded commit.

mailmap const(libgit2.types.git_mailmap)*

the mailmap to resolve with. (may be null)

Return Value

Type: int

0 or an error code

Meta