interface GitTreeEntryRef {
    gitObjectType?: GitObjectType;
    mode?: string;
    objectId?: string;
    relativePath?: string;
    size?: number;
    url?: string;
}

Properties

gitObjectType?: GitObjectType

Blob or tree

mode?: string

Mode represented as octal string

objectId?: string

SHA1 hash of git object

relativePath?: string

Path relative to parent tree object

size?: number

Size of content

url?: string

url to retrieve tree or blob