diff options
| author | Andrew Janke | 2017-08-14 20:19:39 -0400 | 
|---|---|---|
| committer | GitHub | 2017-08-14 20:19:39 -0400 | 
| commit | 60d8218abfe070de765e7a5737cc7e34735288db (patch) | |
| tree | 7d6f441d91b1ca200f7badec96f40c4f15bb6fff /docs/Manpage.md | |
| parent | 9e8da170ffe97aa0932a3643c78b5471c7be7d82 (diff) | |
| parent | bb85581df054d64f108ee6916fc5196bea93055c (diff) | |
| download | brew-60d8218abfe070de765e7a5737cc7e34735288db.tar.bz2 | |
Merge pull request #2996 from apjanke/non-formula-reqs-in-brew-deps-tree
brew deps: add --include-requirements, plus some fixes
Diffstat (limited to 'docs/Manpage.md')
| -rw-r--r-- | docs/Manpage.md | 13 | 
1 files changed, 10 insertions, 3 deletions
| diff --git a/docs/Manpage.md b/docs/Manpage.md index 0fbaf7fc7..f92991147 100644 --- a/docs/Manpage.md +++ b/docs/Manpage.md @@ -77,7 +77,7 @@ With `--verbose` or `-v`, many commands print extra debugging information. Note      a bug report, you will likely be asked for this information if you do not      provide it. -  * `deps` [`--1`] [`-n`] [`--union`] [`--full-name`] [`--installed`] [`--include-build`] [`--include-optional`] [`--skip-recommended`] `formulae`: +  * `deps` [`--1`] [`-n`] [`--union`] [`--full-name`] [`--installed`] [`--include-build`] [`--include-optional`] [`--skip-recommended`] [`--include-requirements`] `formulae`:      Show dependencies for `formulae`. When given multiple formula arguments,      show the intersection of dependencies for `formulae`. @@ -98,15 +98,22 @@ With `--verbose` or `-v`, many commands print extra debugging information. Note      `formulae`. To include the `:build` type dependencies, pass `--include-build`.      Similarly, pass `--include-optional` to include `:optional` dependencies.      To skip `:recommended` type dependencies, pass `--skip-recommended`. +    To include requirements in addition to dependencies, pass `--include-requirements`. -  * `deps` `--tree` [`filters`] (`formulae`|`--installed`): +  * `deps` `--tree` [`--1`] [`filters`] [`--annotate`] (`formulae`|`--installed`):      Show dependencies as a tree. When given multiple formula arguments, output      individual trees for every formula. +    If `--1` is passed, only one level of children is displayed. +      If `--installed` is passed, output a tree for every installed formula.      The `filters` placeholder is any combination of options `--include-build`, -    `--include-optional`, and `--skip-recommended` as documented above. +    `--include-optional`, `--skip-recommended`, and `--include-requirements` as +    documented above. + +    If `--annotate` is passed, the build, optional, and recommended dependencies +    are marked as such in the output.    * `deps` [`filters`] (`--installed`|`--all`):      Show dependencies for installed or all available formulae. Every line of | 
