Module Brassaia_eio.Branch

User-defined branches.

Branches

module type S = Branch_intf.S

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

module String : S with type t = string

String is an implementation of S where branches are strings. The main branch is "main". Valid branch names contain only alpha-numeric characters, -, _, ., and /.

module type Store = Branch_intf.Store

Store specifies the signature for branch stores.