It would be very useful to have commit date, author name, ... in the Commit interface when calling getCommit([...])
Something similar to this:
export interface Commit {
readonly hash: string;
readonly message: string;
readonly parents: string[];
readonly commitDate?: Date;
readonly authorEmail?: string | undefined;
readonly authorName?: string | undefined;
}
It would be very useful to have commit date, author name, ... in the
Commitinterface when callinggetCommit([...])Something similar to this: