git_commit_author_with_mailmap

Get the author 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
int
git_commit_author_with_mailmap

Parameters

out_ libgit2_d.types.git_signature**

a pointer to store the resolved signature.

commit const(libgit2_d.types.git_commit)*

a previously loaded commit.

mailmap const(libgit2_d.types.git_mailmap)*

the mailmap to resolve with. (may be NULL)

Return Value

Type: int

0 or an error code

Meta