Interface CommitIdentity

A tuple of name, email, and a date for the author or commit info in a commit.

interface CommitIdentity {
    email: string;
    name: string;
    timestamp: string;
}

Properties

Properties

email: string

The email address for the user who did the commit.

name: string

The name for the commit.

timestamp: string

The date of the commit in ISO format.