Interface ScmAmendSupport

interface ScmAmendSupport {
    getInitialAmendingCommits(amendingHeadCommitId, latestCommitId): Promise<ScmCommit[]>;
    getLastCommit(): Promise<undefined | ScmCommit>;
    getMessage(commit): Promise<string>;
    reset(commit): Promise<void>;
}

Methods