/opt/imh-python/lib/python3.9/site-packages/pygit2/decl
NameSizeModeActions
attr.h4510644editdlrm
blame.h10510644editdlrm
buffer.h1030644editdlrm
callbacks.h9630644editdlrm
checkout.h18260644editdlrm
clone.h9520644editdlrm
common.h1880644editdlrm
config.h21490644editdlrm
describe.h12280644editdlrm
diff.h21140644editdlrm
errors.h9370644editdlrm
graph.h1280644editdlrm
index.h23310644editdlrm
indexer.h3560644editdlrm
merge.h21390644editdlrm
net.h840644editdlrm
oid.h3090644editdlrm
pack.h7470644editdlrm
proxy.h4110644editdlrm
refspec.h6150644editdlrm
remote.h45290644editdlrm
repository.h21350644editdlrm
revert.h1830644editdlrm
stash.h16880644editdlrm
strarray.h1240644editdlrm
submodule.h12700644editdlrm
transport.h15200644editdlrm
types.h15540644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/pygit2/decl/repository.h (2135B)
#define GIT_REPOSITORY_INIT_OPTIONS_VERSION ... void git_repository_free(git_repository *repo); int git_repository_state_cleanup(git_repository *repo); int git_repository_config(git_config **out, git_repository *repo); int git_repository_config_snapshot(git_config **out, git_repository *repo); typedef enum { GIT_REPOSITORY_INIT_BARE = 1, GIT_REPOSITORY_INIT_NO_REINIT = 2, GIT_REPOSITORY_INIT_NO_DOTGIT_DIR = 4, GIT_REPOSITORY_INIT_MKDIR = 8, GIT_REPOSITORY_INIT_MKPATH = 16, GIT_REPOSITORY_INIT_EXTERNAL_TEMPLATE = 32, GIT_REPOSITORY_INIT_RELATIVE_GITLINK = 64, } git_repository_init_flag_t; typedef enum { GIT_REPOSITORY_INIT_SHARED_UMASK = 0, GIT_REPOSITORY_INIT_SHARED_GROUP = 0002775, GIT_REPOSITORY_INIT_SHARED_ALL = 0002777, } git_repository_init_mode_t; typedef struct { unsigned int version; uint32_t flags; uint32_t mode; const char *workdir_path; const char *description; const char *template_path; const char *initial_head; const char *origin_url; } git_repository_init_options; int git_repository_init_init_options( git_repository_init_options *opts, unsigned int version); int git_repository_init( git_repository **out, const char *path, unsigned is_bare); int git_repository_init_ext( git_repository **out, const char *repo_path, git_repository_init_options *opts); typedef enum { GIT_REPOSITORY_OPEN_NO_SEARCH = 1, GIT_REPOSITORY_OPEN_CROSS_FS = 2, GIT_REPOSITORY_OPEN_BARE = 4, GIT_REPOSITORY_OPEN_NO_DOTGIT = 8, GIT_REPOSITORY_OPEN_FROM_ENV = 16, } git_repository_open_flag_t; int git_repository_open_ext( git_repository **out, const char *path, unsigned int flags, const char *ceiling_dirs); int git_repository_set_head( git_repository* repo, const char* refname); int git_repository_set_head_detached( git_repository* repo, const git_oid* commitish); int git_repository_ident(const char **name, const char **email, const git_repository *repo); int git_repository_set_ident(git_repository *repo, const char *name, const char *email); int git_repository_index(git_index **out, git_repository *repo);