Type alias CommitHeaders

CommitHeaders: {
    author: NormalizedAuthor;
    committer: NormalizedAuthor;
    parent: string[];
    gpgsig?: string;
    tree?: string;
}

Type declaration

  • author: NormalizedAuthor

    Normalized author object.

  • committer: NormalizedAuthor

    Normalized committer object.

  • parent: string[]

    An array of zero or more SHA-1 object ids.

  • Optional gpgsig?: string

    PGP signature (if present).

  • Optional tree?: string

    SHA-1 object id of corresponding file tree.

Generated using TypeDoc