diff options
| author | Arthur Schreiber <schreiber.arthur@googlemail.com> | 2014-10-09 13:58:23 +0200 |
|---|---|---|
| committer | Arthur Schreiber <schreiber.arthur@googlemail.com> | 2014-10-09 14:19:00 +0200 |
| commit | eca07bcd83ae7aa18230779be1bc73d150da8af2 (patch) | |
| tree | 21ff1205923734dae0ddd5fc5d77d5215e55c37d /include/git2 | |
| parent | 9f57fd64436b6441684ce5e6641a0e390304224d (diff) | |
| download | libgit2-eca07bcd83ae7aa18230779be1bc73d150da8af2.tar.gz | |
Add git_merge_bases_many.
Diffstat (limited to 'include/git2')
| -rw-r--r-- | include/git2/merge.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/git2/merge.h b/include/git2/merge.h index bd5ebc1bd..ed1b9a30f 100644 --- a/include/git2/merge.h +++ b/include/git2/merge.h @@ -352,6 +352,21 @@ GIT_EXTERN(int) git_merge_base_many( const git_oid input_array[]); /** + * Find all merge bases given a list of commits + * + * @param out array in which to store the resulting ids + * @param repo the repository where the commits exist + * @param length The number of commits in the provided `input_array` + * @param input_array oids of the commits + * @return Zero on success; GIT_ENOTFOUND or -1 on failure. + */ +GIT_EXTERN(int) git_merge_bases_many( + git_oidarray *out, + git_repository *repo, + size_t length, + const git_oid input_array[]); + +/** * Find a merge base in preparation for an octopus merge * * @param out the OID of a merge base considering all the commits |
