irmin-git.unix
Irmin_git_unix
irmin-git
module type G = sig ... end
module type S = sig ... end
module type Backend = sig ... end
module Maker (G : sig ... end) : sig ... end
module FS : sig ... end
module Mem : sig ... end
include module type of struct include Irmin_unix end
This module provides utilities for Unix applications.
module Info = Irmin_unix.Info
val info : ?author:string -> ('a, Format.formatter, unit, unit -> Irmin.Info.default) format4 -> 'a
info fmt () creates a fresh commit info, with the date set to Unix.gettimeoday () and the author built using Unix.gethostname() and Unix.getpid() if author is not provided.
info fmt ()
Unix.gettimeoday ()
Unix.gethostname()
Unix.getpid()
author