git_status_list_new

Gather file status information and populate the git_status_list.

Note that if a pathspec is given in the git_status_options to filter the status, then the results from rename detection (if you enable it) may not be accurate. To do rename detection properly, this must be called with no pathspec so that all files can be considered.

extern (C) nothrow @nogc
int
git_status_list_new

Parameters

out_ libgit2_d.types.git_status_list**

Pointer to store the status results in

repo libgit2_d.types.git_repository*

Repository object

opts const(.git_status_options)*

Status options structure

Return Value

Type: int

0 on success or error code

Meta