git_mailmap_add_entry

Add a single entry to the given mailmap object. If the entry already exists, it will be replaced with the new entry.

@param mm mailmap to add the entry to @param real_name the real name to use, or NULL @param real_email the real email to use, or NULL @param replace_name the name to replace, or NULL @param replace_email the email to replace @return 0 on success, or an error code

extern (C) nothrow @nogc
int
git_mailmap_add_entry
(,
const(char)* real_name
,
const(char)* real_email
,
const(char)* replace_name
,
const(char)* replace_email
)

Meta