Vcs.RefsCapturing the information related to git refs.
In this file we represent the output of the git show-ref command. In particular we represent the location of all known local branches heads, remote branches heads and tags.
It is worth noting that the location of the remote branches is the state of the remote branches as they are currently known locally.
module Line : sig ... endtype t = Line.t listval sexp_of_t : t -> Sexplib0.Sexp.tval tags : t -> Tag_name.t listval local_branches : t -> Branch_name.t listval remote_branches : t -> Remote_branch_name.t list