git_merge_bases_many

Find all merge bases given a list of commits

extern (C) nothrow @nogc
int
git_merge_bases_many

Parameters

out_ libgit2_d.oidarray.git_oidarray*

array in which to store the resulting ids

repo libgit2_d.types.git_repository*

the repository where the commits exist

length size_t

The number of commits in the provided input_array

input_array libgit2_d.oid.git_oid[]

oids of the commits

Return Value

Type: int

Zero on success; git_error_code.GIT_ENOTFOUND or -1 on failure.

Meta