Unverified Commit 05f21154 by Edward Thomson Committed by GitHub

Merge pull request #6322 from libgit2/ethomson/stat

status: update documentation for default options
parents 70a182c6 fb68f180
...@@ -227,13 +227,16 @@ typedef struct { ...@@ -227,13 +227,16 @@ typedef struct {
/** /**
* The `show` value is one of the `git_status_show_t` constants that * The `show` value is one of the `git_status_show_t` constants that
* control which files to scan and in what order. * control which files to scan and in what order. The default is
* `GIT_STATUS_SHOW_INDEX_AND_WORKDIR`.
*/ */
git_status_show_t show; git_status_show_t show;
/** /**
* The `flags` value is an OR'ed combination of the * The `flags` value is an OR'ed combination of the
* `git_status_opt_t` values above. * `git_status_opt_t` values above. The default is
* `GIT_STATUS_OPT_DEFAULTS`, which matches git's default
* behavior.
*/ */
unsigned int flags; unsigned int flags;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment