libgit2

git_stash_apply_options

Version:

Stash application options structure.

Initialize with the GIT_STASH_APPLY_OPTIONS_INIT macro to set sensible defaults; for example:

git_stash_apply_options opts = GIT_STASH_APPLY_OPTIONS_INIT;

Signature

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 };

Members

unsigned int
version
flags

See git_stash_apply_flags_t, above.

checkout_options

Options to use when writing files to the working directory.

progress_cb

Optional callback to notify the consumer of application progress.

void *
progress_payload

Parameter To

Versions