User info and date for Git operations.

interface GitUserDate {
    date?: Date;
    email?: string;
    imageUrl?: string;
    name?: string;
}

Properties

date?: Date

Date of the Git operation.

email?: string

Email address of the user performing the Git operation.

imageUrl?: string

Url for the user's avatar.

name?: string

Name of the user performing the Git operation.