Revision 4c35f0dbc41a2bb79e4f597d3b7bdb265c5ea750 authored by Jeff King on 08 April 2010, 19:49:08 UTC, committed by Junio C Hamano on 08 April 2010, 20:42:36 UTC
This option is mostly useless these days because we turn on
reflogs by default in non-bare repos.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c8a9790
Raw File
mailmap.h
#ifndef MAILMAP_H
#define MAILMAP_H

int read_mailmap(struct string_list *map, char **repo_abbrev);
void clear_mailmap(struct string_list *map);

int map_user(struct string_list *mailmap,
	     char *email, int maxlen_email, char *name, int maxlen_name);

#endif
back to top