Module type Branch.S

The signature for branches. Irmin branches are similar to Git branches: they are used to associated user-defined names to head commits. Branches have a default value: the master branch.

type t

The type for branches.

val t : t Type.t

t is the value type for t.

val master : t

The name of the master branch.

val is_valid : t -> bool

Check if the branch is valid.