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

Function _go_git_indexer_new

wrapper.c:505–516  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

503}
504
505int _go_git_indexer_new(
506 git_indexer **out,
507 const char *path,
508 unsigned int mode,
509 git_odb *odb,
510 void *progress_cb_payload)
511{
512 git_indexer_options indexer_options = GIT_INDEXER_OPTIONS_INIT;
513 indexer_options.progress_cb = transfer_progress_callback;
514 indexer_options.progress_cb_payload = progress_cb_payload;
515 return git_indexer_new(out, path, mode, odb, &indexer_options);
516}
517
518static int smart_transport_callback(
519 git_transport **out,

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…