git_status_options

Options to control how git_status_foreach_ext() will issue callbacks.

Initialize with GIT_STATUS_OPTIONS_INIT. Alternatively, you can use git_status_options_init.

Members

Variables

baseline
libgit2_d.types.git_tree* baseline;

The baseline is the tree to be used for comparison to the working directory and index; defaults to HEAD.

flags
uint flags;

The flags value is an OR'ed combination of the git_status_opt_t values above.

pathspec
libgit2_d.strarray.git_strarray pathspec;

The pathspec is an array of path patterns to match (using fnmatch-style matching), or just an array of paths to match exactly if git_status_opt_t.GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH is specified in the flags.

show
.git_status_show_t show;

The show value is one of the git_status_show_t constants that control which files to scan and in what order.

version_
uint version_;

The version

Meta