Up

module Tag

: sig

Git tags.

#
type t = {
# sha1
: SHA.t;
# typ
: Object_type.t;
# tag
: string;
# tagger
: User.t;
# message
: string;
}

A tag is bookmark to a previous commit.

include Object.S with type t := t
end