Current_gitlab.Repo_id
Identifier for a Project's repository hosted on GitLab.
type t = {
owner : string;
name : string;
project_id : int;
}
val pp : t Fmt.t
Pretty print t as owner/name/project_id.
t
owner/name/project_id
val compare : t -> t -> int
Compare two compare t t two repo_ids.
compare t t
val cmdliner : t Cmdliner.Term.t
Cmdliner parser for reading a repo_id as a string. The expected format is "owner/name/project_id".
"owner/name/project_id"