libgit2

git_indexer_options

Version:

Options for indexer configuration

Signature

typedef struct git_indexer_options { unsigned int version unsigned int mode git_oid_t oid_type git_odb *odb git_indexer_progress_cb progress_cb void *progress_cb_payload unsigned char verify };

Members

unsigned int
version
unsigned int
mode

permissions to use creating packfile or 0 for defaults

oid_type

the type of object ids in the packfile or 0 for SHA1

odb

object database from which to read base objects when fixing thin packs. This can be NULL if there are no thin packs; if a thin pack is encountered, an error will be returned if there are bases missing.

progress_cb

progress_cb function to call with progress information

void *
progress_cb_payload

progress_cb_payload payload for the progress callback

unsigned char
verify

Do connectivity checks for the received pack

Parameter To

Versions