Backstage
    Preparing search index...

    A repository commit object.

    interface Commit {
        author?: Author;
        committer?: Committer;
        date?: string;
        hash?: string;
        message?: string;
        parents?: BaseCommit[];
        participants?: Participant[];
        repository?: Repository;
        summary?: BaseCommitSummary;
        type: string;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Properties

    author?: Author
    committer?: Committer
    date?: string
    hash?: string
    message?: string
    parents?: BaseCommit[]
    participants?: Participant[]
    repository?: Repository
    type: string