/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/stash.h (1688B)
#define GIT_STASH_APPLY_OPTIONS_VERSION 1 typedef int (*git_stash_cb)( size_t index, const char* message, const git_oid *stash_id, void *payload); typedef enum { GIT_STASH_APPLY_PROGRESS_NONE = 0, GIT_STASH_APPLY_PROGRESS_LOADING_STASH, GIT_STASH_APPLY_PROGRESS_ANALYZE_INDEX, GIT_STASH_APPLY_PROGRESS_ANALYZE_MODIFIED, GIT_STASH_APPLY_PROGRESS_ANALYZE_UNTRACKED, GIT_STASH_APPLY_PROGRESS_CHECKOUT_UNTRACKED, GIT_STASH_APPLY_PROGRESS_CHECKOUT_MODIFIED, GIT_STASH_APPLY_PROGRESS_DONE, } git_stash_apply_progress_t; typedef int (*git_stash_apply_progress_cb)( git_stash_apply_progress_t progress, void *payload); typedef enum { GIT_STASH_DEFAULT = 0, GIT_STASH_KEEP_INDEX = 1, GIT_STASH_INCLUDE_UNTRACKED = 2, GIT_STASH_INCLUDE_IGNORED = 4, } git_stash_flags; typedef enum { GIT_STASH_APPLY_DEFAULT = 0, GIT_STASH_APPLY_REINSTATE_INDEX = 1, } git_stash_apply_flags; typedef struct git_stash_apply_options { unsigned int version; git_stash_apply_flags flags; git_checkout_options checkout_options; git_stash_apply_progress_cb progress_cb; void *progress_payload; } git_stash_apply_options; int git_stash_save( git_oid *out, git_repository *repo, const git_signature *stasher, const char *message, uint32_t flags); int git_stash_apply_init_options( git_stash_apply_options *opts, unsigned int version); int git_stash_apply( git_repository *repo, size_t index, const git_stash_apply_options *options); int git_stash_foreach( git_repository *repo, git_stash_cb callback, void *payload); int git_stash_drop( git_repository *repo, size_t index); int git_stash_pop( git_repository *repo, size_t index, const git_stash_apply_options *options);