libgit2

git_stash_save_options

Version:

Stash save options structure

Initialize with GIT_STASH_SAVE_OPTIONS_INIT. Alternatively, you can use git_stash_save_options_init.

Signature

typedef struct git_stash_save_options { unsigned int version uint32_t flags const git_signature *stasher const char *message git_strarray paths };

Members

unsigned int
version
uint32_t
flags

Flags to control the stashing process. (see GIT_STASH_* above)

stasher

The identity of the person performing the stashing.

const char *
message

Optional description along with the stashed state.

paths

Optional paths that control which files are stashed.

Parameter To

Versions