Module Vcs.Ref_kind

type t =
  1. | Local_branch of {
    1. branch_name : Branch_name.t;
    }
  2. | Remote_branch of {
    1. remote_branch_name : Remote_branch_name.t;
    }
  3. | Tag of {
    1. tag_name : Tag_name.t;
    }
  4. | Other of {
    1. name : string;
    }
val compare : t -> t -> int
val equal : t -> t -> bool
val hash : t -> int
val seeded_hash : int -> t -> int
val sexp_of_t : t -> Sexplib0.Sexp.t
val to_string : t -> string