Interface GitResult

The result of shelling out to Git.

interface GitResult {
    exitCode: number;
    stderr: string;
    stdout: string;
}

Properties

exitCode: number

The exit code of the Git process.

stderr: string

The standard error output from Git.

stdout: string

The standard output from Git.