git_repository_create_cb

The signature of a function matchin git_repository_init, with an aditional void * as callback payload.

Callers of git_clone my provide a function matching this signature to override the repository creation and customization process during a clone operation.

@param out_ the resulting repository @param path path in which to create the repository @param bare whether the repository is bare. This is the value from the clone options @param payload payload specified by the options @return 0, or a negative value to indicate error

extern (C) nothrow @nogc
alias git_repository_create_cb = int function

Meta