Revision b727a235a786423c93ce4f09eee296fbb5a919d1 authored by Junio C Hamano on 14 July 2007, 06:03:37 UTC, committed by Junio C Hamano on 14 July 2007, 06:22:52 UTC
Now we can use all internally supported date formats with

	git log --date=<format>

syntax.  Earlier, we only allowed relative/local/default.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 73013af
Raw File
mailmap.h
#ifndef MAILMAP_H
#define MAILMAP_H

int read_mailmap(struct path_list *map, const char *filename, char **repo_abbrev);
int map_email(struct path_list *mailmap, const char *email, char *name, int maxlen);

#endif
back to top