Vcs.Ref_kind
type t =
| Local_branch of {
branch_name : Branch_name.t;
}
| Remote_branch of {
remote_branch_name : Remote_branch_name.t;
}
| Tag of {
tag_name : Tag_name.t;
}
| Other of {
}
val hash : t -> int
val seeded_hash : int -> t -> int
val sexp_of_t : t -> Sexplib0.Sexp.t
val to_string : t -> string