Status information about a requested fork operation.

interface GitForkOperationStatusDetail {
    allSteps?: string[];
    currentStep?: number;
    errorMessage?: string;
}

Properties

allSteps?: string[]

All valid steps for the forking process

currentStep?: number

Index into AllSteps for the current step

errorMessage?: string

Error message if the operation failed.