Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Commit

import type { Commit } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";

Returns information about a specific commit.

interface Commit {
additionalData?: string | null;
author?: UserInfo | null;
commitId?: string | null;
committer?: UserInfo | null;
message?: string | null;
parents?: string[] | null;
treeId?: string | null;
}

§Properties

§
additionalData?: string | null
[src]

Any other data associated with the specified commit.

§
author?: UserInfo | null
[src]

Information about the author of the specified commit. Information includes the date in timestamp format with GMT offset, the name of the author, and the email address for the author, as configured in Git.

§
commitId?: string | null
[src]

The full SHA ID of the specified commit.

§
committer?: UserInfo | null
[src]

Information about the person who committed the specified commit, also known as the committer. Information includes the date in timestamp format with GMT offset, the name of the committer, and the email address for the committer, as configured in Git.

For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.

§
message?: string | null
[src]

The commit message associated with the specified commit.

§
parents?: string[] | null
[src]

A list of parent commits for the specified commit. Each parent commit ID is the full commit ID.

§
treeId?: string | null
[src]

Tree information for the specified commit.