Interface Remote

Representation of a Git remote.

interface Remote {
    fetch: string;
    name: string;
    push: string;
}

Properties

Properties

fetch: string

The remote fetch url.

name: string

The name of the remote.

push: string

The remote git url.