Git.Authorship

A parsed Git author/committer line.

Constructors

this
this(string authorship)

Parse from a raw author/committer line.

this
this(string name, string email, string date)

Construct from fields.

Members

Functions

toString
string toString()

Convert to a raw author/committer line.

Manifest constants

dateFormat
enum dateFormat;

Format string which can be used with ae.utils.time to parse or format Git dates.

Variables

date
string date;

Raw date. Use dateFormat with ae.utils.time to parse.

email
string email;

Email address (without the < / > delimiters).

name
string name;

Name (without email).

Meta