MCPcopy Create free account
hub / github.com/libgit2/git2go / _go_git_index_add_all

Function _go_git_index_add_all

wrapper.c:367–371  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365}
366
367int _go_git_index_add_all(git_index *index, const git_strarray *pathspec, unsigned int flags, void *callback)
368{
369 git_index_matched_path_cb cb = callback ? (git_index_matched_path_cb)&indexMatchedPathCallback : NULL;
370 return git_index_add_all(index, pathspec, flags, cb, callback);
371}
372
373int _go_git_index_update_all(git_index *index, const git_strarray *pathspec, void *callback)
374{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…