ISPO SDK
    Preparing search index...

    Interface GitExternalApi

    Markdown
    interface GitExternalApi {
        diffFile(slotId: string, path: string): Promise<ExternalGitDiffResult>;
        log(
            slotId: string,
            limit: number,
            cursorSha?: string,
        ): Promise<ExternalGitLogResult>;
        show(slotId: string, sha: string): Promise<ExternalGitChangedFile[]>;
        status(slotId: string): Promise<ExternalGitChangedFile[]>;
    }
    Index
    • Parameters

      • slotId: string
      • limit: number
      • OptionalcursorSha: string

      Returns Promise<ExternalGitLogResult>