Library
Module
Module type
Parameter
Class
Class type
Manipulate branches.
Manipulate relations between branches and commits.
find r b
is Some c
iff c
is bound to b
in t
. It is None
if b
is not present in t
.
get t b
is similar to find
but raise Invalid_argument
if b
is not present in t
.
watch t b f
calls f
on every change in b
.
val watch_all :
repo ->
?init:(branch * commit) list ->
(branch -> commit Irmin.diff -> unit Lwt.t) ->
watch Lwt.t
watch_all t f
calls f
on every branch-related change in t
, including creation/deletion events.
Base functions for branches.
include Irmin.Branch.S with type t = branch
type t = branch
The type for branches.
val t : t Irmin.Type.t
t
is the value type for t
.
val of_string : string -> (t, [ `Msg of string ]) Result.result
of_string
parses branch names.
val master : t
The name of the master branch.
val is_valid : t -> bool
Check if the branch is valid.