interface GitRepository {
    _links?: any;
    defaultBranch?: string;
    id?: string;
    isDisabled?: boolean;
    isFork?: boolean;
    isInMaintenance?: boolean;
    name?: string;
    parentRepository?: GitRepositoryRef;
    project?: TeamProjectReference;
    remoteUrl?: string;
    size?: number;
    sshUrl?: string;
    url?: string;
    validRemoteUrls?: string[];
    webUrl?: string;
}

Properties

_links?: any
defaultBranch?: string
id?: string
isDisabled?: boolean

True if the repository is disabled. False otherwise.

isFork?: boolean

True if the repository was created as a fork.

isInMaintenance?: boolean

True if the repository is in maintenance. False otherwise.

name?: string
parentRepository?: GitRepositoryRef
remoteUrl?: string
size?: number

Compressed size (bytes) of the repository.

sshUrl?: string
url?: string
validRemoteUrls?: string[]
webUrl?: string