Staging
v0.5.1
https://github.com/git/git
Revision 362de916c06521205276acb7f51c99f47db94727 authored by Junio C Hamano on 10 June 2013, 00:16:20 UTC, committed by Junio C Hamano on 10 June 2013, 19:34:42 UTC
Primarily to push out two regression issues that seem to affect many
people, namely, the ".gitignore !directory" bug and "daemon cannot
read from $HOME owned by root" bug.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent a454065
Raw File
Tip revision: 362de916c06521205276acb7f51c99f47db94727 authored by Junio C Hamano on 10 June 2013, 00:16:20 UTC
Git 1.8.3.1
Tip revision: 362de91
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 *map,
			 const char **email, size_t *emaillen, const char **name, size_t *namelen);

#endif
back to top