You can search for identifiers within the package.
in-package search v0.2.0
A Ref as an indirect way of referring to a commit.
type t = [
| `Ref of string
| `PR of int
]
Ref is either a regular git ref or a MergeRequest.
val pp : t Fmt.t
val compare : t -> t -> int
val to_git : t -> string
to_git t is the Git-format string of the ref, e.g."refs/pull/%d/head"
to_git t