Up

module Object_type

: sig

Git object types.

#
type t =
# | Blob
# | Commit
# | Tag
# | Tree
include Object.S with type t := t
#
val to_string : t -> string
#
val of_string : string -> t option
end