interface GitCommitDiffs {
    aheadCount?: number;
    allChangesIncluded?: boolean;
    baseCommit?: string;
    behindCount?: number;
    changeCounts?: { [key: number]: number };
    changes?: GitChange[];
    commonCommit?: string;
    targetCommit?: string;
}

Properties

aheadCount?: number
allChangesIncluded?: boolean
baseCommit?: string
behindCount?: number
changeCounts?: { [key: number]: number }
changes?: GitChange[]
commonCommit?: string
targetCommit?: string