libgit2
Index
Types
type object_t = enum {
OBJECT_ANY = -2, OBJECT_INVALID = -1, OBJECT_COMMIT = 1, OBJECT_TREE = 2, OBJECT_BLOB = 3, OBJECT_TAG = 4, };
type repository = opaque;
type repository_init_flag_t = enum uint {
REPOSITORY_INIT_BARE = 1 << 0, REPOSITORY_INIT_NO_REINIT = 1 << 1,
REPOSITORY_INIT_MKDIR = 1 << 3,
REPOSITORY_INIT_MKPATH = 1 << 4,
REPOSITORY_INIT_EXTERNAL_TEMPLATE = 1 << 5,
REPOSITORY_INIT_RELATIVE_GITLINK = 1 << 6,
};
Functions
@symbol("git_libgit2_init") fn libgit2_init() int;
@symbol("git_libgit2_shutdown") fn libgit2_shutdown() int;
fn repository_init(out: *nullable *repository, path: str, is_bare: bool) int;
Types
type object_t
type object_t = enum {
OBJECT_ANY = -2, OBJECT_INVALID = -1, OBJECT_COMMIT = 1, OBJECT_TREE = 2, OBJECT_BLOB = 3, OBJECT_TAG = 4, };
Basic type (loose or packed) of any Git object.
type repository
type repository = opaque;
Representation of an existing git repository, including all its object contents
type repository_init_flag_t
type repository_init_flag_t = enum uint {
REPOSITORY_INIT_BARE = 1 << 0, REPOSITORY_INIT_NO_REINIT = 1 << 1,
REPOSITORY_INIT_MKDIR = 1 << 3,
REPOSITORY_INIT_MKPATH = 1 << 4,
REPOSITORY_INIT_EXTERNAL_TEMPLATE = 1 << 5,
REPOSITORY_INIT_RELATIVE_GITLINK = 1 << 6,
};
Option flags for repository_init_ext.
These flags configure extra behaviors to repository_init_ext. In every case, the default behavior is the zero value (i.e. flag is not set). Just OR the flag values together for the flags parameter when initializing a new repo.
Functions
fn libgit2_init
@symbol("git_libgit2_init") fn libgit2_init() int;
Init the global state
This function must be called before any other libgit2 function in order to set up global state and threading.
This function may be called multiple times - it will return the number of times the initialization has been called (including this one) that have not subsequently been shutdown.
fn libgit2_shutdown
@symbol("git_libgit2_shutdown") fn libgit2_shutdown() int;
Shutdown the global state
Clean up the global state and threading context after calling it as many times as git_libgit2_init() was called - it will return the number of remainining initializations that have not been shutdown (after this one).
fn repository_init
fn repository_init(out: *nullable *repository, path: str, is_bare: bool) int;
Creates a new Git repository in the given folder.
is_bare is a boolean that determines whether the repository will be a bare repository, or whether it should be created as a working directory with a .git inside.
Returns 0 on success, or an error code.