A Git annotated tag.

interface GitAnnotatedTag {
    message?: string;
    name?: string;
    objectId?: string;
    taggedBy?: GitUserDate;
    taggedObject?: GitObject;
    url?: string;
}

Properties

message?: string

The tagging Message

name?: string

The name of the annotated tag.

objectId?: string

The objectId (Sha1Id) of the tag.

taggedBy?: GitUserDate

User info and date of tagging.

taggedObject?: GitObject

Tagged git object.

url?: string