mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
chore: upgrade to libgit2-1.2.0
This commit is contained in:
parent
b83fea9360
commit
a1e420d86c
36 changed files with 2889 additions and 1024 deletions
|
@ -223,6 +223,15 @@ GIT_EXTERN(int) git_submodule_lookup(
|
|||
git_repository *repo,
|
||||
const char *name);
|
||||
|
||||
/**
|
||||
* Create an in-memory copy of a submodule. The copy must be explicitly
|
||||
* free'd or it will leak.
|
||||
*
|
||||
* @param out Pointer to store the copy of the submodule.
|
||||
* @param source Original submodule to copy.
|
||||
*/
|
||||
GIT_EXTERN(int) git_submodule_dup(git_submodule **out, git_submodule *source);
|
||||
|
||||
/**
|
||||
* Release a submodule
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue