mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
Update maintainers, manpage and completions.
Autogenerated by the [update-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/update-man-completions.yml) workflow.
This commit is contained in:
parent
07f14c32e9
commit
de7e7a230b
@ -707,9 +707,11 @@ _brew_deps() {
|
|||||||
--annotate
|
--annotate
|
||||||
--cask
|
--cask
|
||||||
--debug
|
--debug
|
||||||
|
--dot
|
||||||
--for-each
|
--for-each
|
||||||
--formula
|
--formula
|
||||||
--full-name
|
--full-name
|
||||||
|
--graph
|
||||||
--help
|
--help
|
||||||
--include-build
|
--include-build
|
||||||
--include-optional
|
--include-optional
|
||||||
|
@ -553,9 +553,11 @@ __fish_brew_complete_arg 'deps' -l all -d 'List dependencies for all available f
|
|||||||
__fish_brew_complete_arg 'deps' -l annotate -d 'Mark any build, test, optional, or recommended dependencies as such in the output'
|
__fish_brew_complete_arg 'deps' -l annotate -d 'Mark any build, test, optional, or recommended dependencies as such in the output'
|
||||||
__fish_brew_complete_arg 'deps' -l cask -d 'Treat all named arguments as casks'
|
__fish_brew_complete_arg 'deps' -l cask -d 'Treat all named arguments as casks'
|
||||||
__fish_brew_complete_arg 'deps' -l debug -d 'Display any debugging information'
|
__fish_brew_complete_arg 'deps' -l debug -d 'Display any debugging information'
|
||||||
|
__fish_brew_complete_arg 'deps' -l dot -d 'Show text-based graph description in DOT format'
|
||||||
__fish_brew_complete_arg 'deps' -l for-each -d 'Switch into the mode used by the `--all` option, but only list dependencies for each provided formula, one formula per line. This is used for debugging the `--installed`/`--all` display mode'
|
__fish_brew_complete_arg 'deps' -l for-each -d 'Switch into the mode used by the `--all` option, but only list dependencies for each provided formula, one formula per line. This is used for debugging the `--installed`/`--all` display mode'
|
||||||
__fish_brew_complete_arg 'deps' -l formula -d 'Treat all named arguments as formulae'
|
__fish_brew_complete_arg 'deps' -l formula -d 'Treat all named arguments as formulae'
|
||||||
__fish_brew_complete_arg 'deps' -l full-name -d 'List dependencies by their full name'
|
__fish_brew_complete_arg 'deps' -l full-name -d 'List dependencies by their full name'
|
||||||
|
__fish_brew_complete_arg 'deps' -l graph -d 'Show dependencies as a directed graph'
|
||||||
__fish_brew_complete_arg 'deps' -l help -d 'Show this message'
|
__fish_brew_complete_arg 'deps' -l help -d 'Show this message'
|
||||||
__fish_brew_complete_arg 'deps' -l include-build -d 'Include `:build` dependencies for formula'
|
__fish_brew_complete_arg 'deps' -l include-build -d 'Include `:build` dependencies for formula'
|
||||||
__fish_brew_complete_arg 'deps' -l include-optional -d 'Include `:optional` dependencies for formula'
|
__fish_brew_complete_arg 'deps' -l include-optional -d 'Include `:optional` dependencies for formula'
|
||||||
|
@ -679,8 +679,10 @@ _brew_deps() {
|
|||||||
'(--installed)--all[List dependencies for all available formulae]' \
|
'(--installed)--all[List dependencies for all available formulae]' \
|
||||||
'--annotate[Mark any build, test, optional, or recommended dependencies as such in the output]' \
|
'--annotate[Mark any build, test, optional, or recommended dependencies as such in the output]' \
|
||||||
'--debug[Display any debugging information]' \
|
'--debug[Display any debugging information]' \
|
||||||
|
'--dot[Show text-based graph description in DOT format]' \
|
||||||
'--for-each[Switch into the mode used by the `--all` option, but only list dependencies for each provided formula, one formula per line. This is used for debugging the `--installed`/`--all` display mode]' \
|
'--for-each[Switch into the mode used by the `--all` option, but only list dependencies for each provided formula, one formula per line. This is used for debugging the `--installed`/`--all` display mode]' \
|
||||||
'--full-name[List dependencies by their full name]' \
|
'--full-name[List dependencies by their full name]' \
|
||||||
|
'(--tree)--graph[Show dependencies as a directed graph]' \
|
||||||
'--help[Show this message]' \
|
'--help[Show this message]' \
|
||||||
'--include-build[Include `:build` dependencies for formula]' \
|
'--include-build[Include `:build` dependencies for formula]' \
|
||||||
'--include-optional[Include `:optional` dependencies for formula]' \
|
'--include-optional[Include `:optional` dependencies for formula]' \
|
||||||
@ -689,7 +691,7 @@ _brew_deps() {
|
|||||||
'(--all)--installed[List dependencies for formulae that are currently installed. If formula is specified, list only its dependencies that are currently installed]' \
|
'(--all)--installed[List dependencies for formulae that are currently installed. If formula is specified, list only its dependencies that are currently installed]' \
|
||||||
'--quiet[Make some output more quiet]' \
|
'--quiet[Make some output more quiet]' \
|
||||||
'--skip-recommended[Skip `:recommended` dependencies for formula]' \
|
'--skip-recommended[Skip `:recommended` dependencies for formula]' \
|
||||||
'--tree[Show dependencies as a tree. When given multiple formula arguments, show individual trees for each formula]' \
|
'(--graph)--tree[Show dependencies as a tree. When given multiple formula arguments, show individual trees for each formula]' \
|
||||||
'--union[Show the union of dependencies for multiple formula, instead of the intersection]' \
|
'--union[Show the union of dependencies for multiple formula, instead of the intersection]' \
|
||||||
'--verbose[Make some output more verbose]' \
|
'--verbose[Make some output more verbose]' \
|
||||||
'-n[Sort dependencies in topological order]' \
|
'-n[Sort dependencies in topological order]' \
|
||||||
|
@ -158,6 +158,10 @@ show the intersection of dependencies for each formula.
|
|||||||
Include requirements in addition to dependencies for *`formula`*.
|
Include requirements in addition to dependencies for *`formula`*.
|
||||||
* `--tree`:
|
* `--tree`:
|
||||||
Show dependencies as a tree. When given multiple formula arguments, show individual trees for each formula.
|
Show dependencies as a tree. When given multiple formula arguments, show individual trees for each formula.
|
||||||
|
* `--graph`:
|
||||||
|
Show dependencies as a directed graph.
|
||||||
|
* `--dot`:
|
||||||
|
Show text-based graph description in DOT format.
|
||||||
* `--annotate`:
|
* `--annotate`:
|
||||||
Mark any build, test, optional, or recommended dependencies as such in the output.
|
Mark any build, test, optional, or recommended dependencies as such in the output.
|
||||||
* `--installed`:
|
* `--installed`:
|
||||||
|
@ -191,6 +191,14 @@ Include requirements in addition to dependencies for \fIformula\fR\.
|
|||||||
Show dependencies as a tree\. When given multiple formula arguments, show individual trees for each formula\.
|
Show dependencies as a tree\. When given multiple formula arguments, show individual trees for each formula\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
|
\fB\-\-graph\fR
|
||||||
|
Show dependencies as a directed graph\.
|
||||||
|
.
|
||||||
|
.TP
|
||||||
|
\fB\-\-dot\fR
|
||||||
|
Show text\-based graph description in DOT format\.
|
||||||
|
.
|
||||||
|
.TP
|
||||||
\fB\-\-annotate\fR
|
\fB\-\-annotate\fR
|
||||||
Mark any build, test, optional, or recommended dependencies as such in the output\.
|
Mark any build, test, optional, or recommended dependencies as such in the output\.
|
||||||
.
|
.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user