man: Make command heading H3
This commit is contained in:
parent
4f58f2db99
commit
e0e876cf37
@ -55,11 +55,10 @@ module Homebrew
|
|||||||
def audit_args
|
def audit_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`audit` [<options>] [<formulae>]:
|
### audit [options] [formulae]:
|
||||||
|
|
||||||
Check <formulae> for Homebrew coding style violations. This should be
|
Check <formulae> for Homebrew coding style violations. This should be
|
||||||
run before submitting a new formula.
|
run before submitting a new formula.
|
||||||
|
|
||||||
If no <formulae> are provided, all of them are checked.
|
If no <formulae> are provided, all of them are checked.
|
||||||
EOS
|
EOS
|
||||||
switch "--strict",
|
switch "--strict",
|
||||||
|
|||||||
@ -72,11 +72,10 @@ module Homebrew
|
|||||||
def bottle_args
|
def bottle_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`bottle` [<options>] [<formulae>]:
|
### bottle [options] [formulae]:
|
||||||
|
|
||||||
Generate a bottle (binary package) from a formula installed with
|
Generate a bottle (binary package) from a formula installed with
|
||||||
`--build-bottle`.
|
`--build-bottle`.
|
||||||
|
|
||||||
If the formula specifies a rebuild version, it will be incremented in the
|
If the formula specifies a rebuild version, it will be incremented in the
|
||||||
generated DSL. Passing `--keep-old` will attempt to keep it at its
|
generated DSL. Passing `--keep-old` will attempt to keep it at its
|
||||||
original value, while `--no-rebuild` will remove it.
|
original value, while `--no-rebuild` will remove it.
|
||||||
|
|||||||
@ -50,7 +50,7 @@ module Homebrew
|
|||||||
def bump_formula_pr_args
|
def bump_formula_pr_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`bump-formula-pr` [<options>] <formula>:
|
### bump-formula-pr [options] [formula]:
|
||||||
|
|
||||||
Creates a pull request to update the formula with a new URL or a new tag.
|
Creates a pull request to update the formula with a new URL or a new tag.
|
||||||
|
|
||||||
|
|||||||
@ -30,7 +30,7 @@ module Homebrew
|
|||||||
def create_args
|
def create_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`create` <URL> [<options>]:
|
### create URL [options]:
|
||||||
|
|
||||||
Generate a formula for the downloadable file at <URL> and open it in the editor.
|
Generate a formula for the downloadable file at <URL> and open it in the editor.
|
||||||
Homebrew will attempt to automatically derive the formula name
|
Homebrew will attempt to automatically derive the formula name
|
||||||
|
|||||||
@ -13,10 +13,10 @@ module Homebrew
|
|||||||
def edit_args
|
def edit_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
* `edit`:
|
### edit:
|
||||||
Open all of Homebrew for editing.
|
Open all of Homebrew for editing.
|
||||||
|
|
||||||
* `edit` <formula>:
|
### edit [formula]:
|
||||||
Open <formula> in the editor.
|
Open <formula> in the editor.
|
||||||
EOS
|
EOS
|
||||||
switch :force
|
switch :force
|
||||||
|
|||||||
@ -10,7 +10,7 @@ module Homebrew
|
|||||||
def formula_args
|
def formula_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`formula` <formula>:
|
### formula [formula]:
|
||||||
|
|
||||||
Display the path where <formula> is located.
|
Display the path where <formula> is located.
|
||||||
EOS
|
EOS
|
||||||
|
|||||||
@ -25,7 +25,7 @@ module Homebrew
|
|||||||
def irb_args
|
def irb_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`irb` [<options>]:
|
### irb [options]:
|
||||||
|
|
||||||
Enter the interactive Homebrew Ruby shell.
|
Enter the interactive Homebrew Ruby shell.
|
||||||
EOS
|
EOS
|
||||||
|
|||||||
@ -22,7 +22,7 @@ module Homebrew
|
|||||||
def linkage_args
|
def linkage_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`linkage` [<options>] <formula>:
|
### linkage [options] [formula]:
|
||||||
|
|
||||||
Checks the library links of an installed formula.
|
Checks the library links of an installed formula.
|
||||||
|
|
||||||
|
|||||||
@ -36,7 +36,7 @@ module Homebrew
|
|||||||
def man_args
|
def man_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`man` [<options>]:
|
### man [options]:
|
||||||
|
|
||||||
Generate Homebrew's manpages.
|
Generate Homebrew's manpages.
|
||||||
EOS
|
EOS
|
||||||
|
|||||||
@ -10,7 +10,7 @@ module Homebrew
|
|||||||
def mirror_args
|
def mirror_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`mirror` [<formulae>]:
|
### mirror [formulae]:
|
||||||
|
|
||||||
Reuploads the stable URL for a formula to Bintray to use it as a mirror.
|
Reuploads the stable URL for a formula to Bintray to use it as a mirror.
|
||||||
EOS
|
EOS
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#: * `prof` [<ruby options>]:
|
#: ### prof [ruby options]:
|
||||||
#: Run Homebrew with the Ruby profiler.
|
#: Run Homebrew with the Ruby profiler.
|
||||||
#: For example:
|
#: For example:
|
||||||
# brew prof readall
|
# brew prof readall
|
||||||
|
|||||||
@ -75,7 +75,7 @@ module Homebrew
|
|||||||
def pull_args
|
def pull_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`bump-formula-pr` [<options>] <formula>:
|
### pull [options] [formula]:
|
||||||
|
|
||||||
Gets a patch from a GitHub commit or pull request and applies it to Homebrew.
|
Gets a patch from a GitHub commit or pull request and applies it to Homebrew.
|
||||||
Optionally, installs the formulae changed by the patch.
|
Optionally, installs the formulae changed by the patch.
|
||||||
|
|||||||
@ -13,7 +13,7 @@ module Homebrew
|
|||||||
def release_notes_args
|
def release_notes_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`release-notes` [<previous_tag>] [<end_ref>]:
|
### release-notes [previous_tag] [end_ref]:
|
||||||
|
|
||||||
Output the merged pull requests on Homebrew/brew between two Git refs.
|
Output the merged pull requests on Homebrew/brew between two Git refs.
|
||||||
If no <previous_tag> is provided it defaults to the latest tag.
|
If no <previous_tag> is provided it defaults to the latest tag.
|
||||||
|
|||||||
@ -18,7 +18,7 @@ module Homebrew
|
|||||||
def tap_new_args
|
def tap_new_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`tap-new` <user>`/`<repo>:
|
### tap-new [user]/[repo]:
|
||||||
|
|
||||||
Generate the template files for a new tap.
|
Generate the template files for a new tap.
|
||||||
EOS
|
EOS
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#: * `test` [`--devel`|`--HEAD`] [`--debug`] [`--keep-tmp`] <formula>:
|
#: ### test [--devel|--HEAD] [--debug] [--keep-tmp] [formula]:
|
||||||
#: Most formulae provide a test method. `brew test` <formula> runs this
|
#: Most formulae provide a test method. `brew test` <formula> runs this
|
||||||
#: test method. There is no standard output or return code, but it should
|
#: test method. There is no standard output or return code, but it should
|
||||||
#: generally indicate to the user if something is wrong with the installed
|
#: generally indicate to the user if something is wrong with the installed
|
||||||
|
|||||||
@ -24,7 +24,7 @@ module Homebrew
|
|||||||
def tests_args
|
def tests_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`tests` [<options>] <formula>:
|
### tests [options] [formula]:
|
||||||
|
|
||||||
Run Homebrew's unit and integration tests. If provided,
|
Run Homebrew's unit and integration tests. If provided,
|
||||||
`--only=`<test_script> runs only <test_script>_spec.rb, and `--seed`
|
`--only=`<test_script> runs only <test_script>_spec.rb, and `--seed`
|
||||||
|
|||||||
@ -22,7 +22,7 @@ module Homebrew
|
|||||||
def update_test_args
|
def update_test_args
|
||||||
Homebrew::CLI::Parser.new do
|
Homebrew::CLI::Parser.new do
|
||||||
usage_banner <<~EOS
|
usage_banner <<~EOS
|
||||||
`update-test` [<options>]:
|
### update-test [options]:
|
||||||
|
|
||||||
Runs a test of `brew update` with a new repository clone.
|
Runs a test of `brew update` with a new repository clone.
|
||||||
|
|
||||||
|
|||||||
@ -663,11 +663,10 @@ With `--verbose` or `-v`, many commands print extra debugging information. Note
|
|||||||
|
|
||||||
## DEVELOPER COMMANDS
|
## DEVELOPER COMMANDS
|
||||||
|
|
||||||
`audit` [`options`] [`formulae`]:
|
### audit [options] [formulae]:
|
||||||
|
|
||||||
Check `formulae` for Homebrew coding style violations. This should be
|
Check `formulae` for Homebrew coding style violations. This should be
|
||||||
run before submitting a new formula.
|
run before submitting a new formula.
|
||||||
|
|
||||||
If no `formulae` are provided, all of them are checked.
|
If no `formulae` are provided, all of them are checked.
|
||||||
|
|
||||||
* `--strict`:
|
* `--strict`:
|
||||||
@ -697,11 +696,10 @@ Make some output more verbose.
|
|||||||
* `-d`, `--debug`:
|
* `-d`, `--debug`:
|
||||||
Display any debugging information.
|
Display any debugging information.
|
||||||
|
|
||||||
`bottle` [`options`] [`formulae`]:
|
### bottle [options] [formulae]:
|
||||||
|
|
||||||
Generate a bottle (binary package) from a formula installed with
|
Generate a bottle (binary package) from a formula installed with
|
||||||
`--build-bottle`.
|
`--build-bottle`.
|
||||||
|
|
||||||
If the formula specifies a rebuild version, it will be incremented in the
|
If the formula specifies a rebuild version, it will be incremented in the
|
||||||
generated DSL. Passing `--keep-old` will attempt to keep it at its
|
generated DSL. Passing `--keep-old` will attempt to keep it at its
|
||||||
original value, while `--no-rebuild` will remove it.
|
original value, while `--no-rebuild` will remove it.
|
||||||
@ -731,7 +729,7 @@ Make some output more verbose.
|
|||||||
* `-d`, `--debug`:
|
* `-d`, `--debug`:
|
||||||
Display any debugging information.
|
Display any debugging information.
|
||||||
|
|
||||||
`bump-formula-pr` [`options`] `formula`:
|
### bump-formula-pr [options] [formula]:
|
||||||
|
|
||||||
Creates a pull request to update the formula with a new URL or a new tag.
|
Creates a pull request to update the formula with a new URL or a new tag.
|
||||||
|
|
||||||
@ -782,7 +780,7 @@ Make some output more verbose.
|
|||||||
* `-d`, `--debug`:
|
* `-d`, `--debug`:
|
||||||
Display any debugging information.
|
Display any debugging information.
|
||||||
|
|
||||||
`create` `URL` [`options`]:
|
### create URL [options]:
|
||||||
|
|
||||||
Generate a formula for the downloadable file at `URL` and open it in the editor.
|
Generate a formula for the downloadable file at `URL` and open it in the editor.
|
||||||
Homebrew will attempt to automatically derive the formula name
|
Homebrew will attempt to automatically derive the formula name
|
||||||
@ -813,10 +811,10 @@ Make some output more verbose.
|
|||||||
* `-d`, `--debug`:
|
* `-d`, `--debug`:
|
||||||
Display any debugging information.
|
Display any debugging information.
|
||||||
|
|
||||||
* `edit`:
|
### edit:
|
||||||
Open all of Homebrew for editing.
|
Open all of Homebrew for editing.
|
||||||
|
|
||||||
* `edit` `formula`:
|
### edit [formula]:
|
||||||
Open `formula` in the editor.
|
Open `formula` in the editor.
|
||||||
|
|
||||||
* `-f`, `--force`:
|
* `-f`, `--force`:
|
||||||
@ -826,7 +824,7 @@ Make some output more verbose.
|
|||||||
* `-d`, `--debug`:
|
* `-d`, `--debug`:
|
||||||
Display any debugging information.
|
Display any debugging information.
|
||||||
|
|
||||||
`formula` `formula`:
|
### formula [formula]:
|
||||||
|
|
||||||
Display the path where `formula` is located.
|
Display the path where `formula` is located.
|
||||||
|
|
||||||
@ -835,7 +833,7 @@ Display any debugging information.
|
|||||||
* `-v`, `--verbose`:
|
* `-v`, `--verbose`:
|
||||||
Make some output more verbose.
|
Make some output more verbose.
|
||||||
|
|
||||||
`irb` [`options`]:
|
### irb [options]:
|
||||||
|
|
||||||
Enter the interactive Homebrew Ruby shell.
|
Enter the interactive Homebrew Ruby shell.
|
||||||
|
|
||||||
@ -844,7 +842,7 @@ Show several examples.
|
|||||||
* `--pry`:
|
* `--pry`:
|
||||||
Pry will be used instead of irb if `--pry` is passed or HOMEBREW_PRY is set.
|
Pry will be used instead of irb if `--pry` is passed or HOMEBREW_PRY is set.
|
||||||
|
|
||||||
`linkage` [`options`] `formula`:
|
### linkage [options] [formula]:
|
||||||
|
|
||||||
Checks the library links of an installed formula.
|
Checks the library links of an installed formula.
|
||||||
|
|
||||||
@ -862,7 +860,7 @@ Make some output more verbose.
|
|||||||
* `-d`, `--debug`:
|
* `-d`, `--debug`:
|
||||||
Display any debugging information.
|
Display any debugging information.
|
||||||
|
|
||||||
`man` [`options`]:
|
### man [options]:
|
||||||
|
|
||||||
Generate Homebrew's manpages.
|
Generate Homebrew's manpages.
|
||||||
|
|
||||||
@ -871,7 +869,7 @@ Return a failing status code if changes are detected in the manpage outputs. Thi
|
|||||||
* `--link`:
|
* `--link`:
|
||||||
It is now done automatically by `brew update`.
|
It is now done automatically by `brew update`.
|
||||||
|
|
||||||
`mirror` [`formulae`]:
|
### mirror [formulae]:
|
||||||
|
|
||||||
Reuploads the stable URL for a formula to Bintray to use it as a mirror.
|
Reuploads the stable URL for a formula to Bintray to use it as a mirror.
|
||||||
|
|
||||||
@ -880,11 +878,11 @@ Display any debugging information.
|
|||||||
* `-v`, `--verbose`:
|
* `-v`, `--verbose`:
|
||||||
Make some output more verbose.
|
Make some output more verbose.
|
||||||
|
|
||||||
* `prof` [`ruby options`]:
|
### prof [ruby options]:
|
||||||
Run Homebrew with the Ruby profiler.
|
Run Homebrew with the Ruby profiler.
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
`bump-formula-pr` [`options`] `formula`:
|
### pull [options] [formula]:
|
||||||
|
|
||||||
Gets a patch from a GitHub commit or pull request and applies it to Homebrew.
|
Gets a patch from a GitHub commit or pull request and applies it to Homebrew.
|
||||||
Optionally, installs the formulae changed by the patch.
|
Optionally, installs the formulae changed by the patch.
|
||||||
@ -929,7 +927,7 @@ Make some output more verbose.
|
|||||||
* `-d`, `--debug`:
|
* `-d`, `--debug`:
|
||||||
Display any debugging information.
|
Display any debugging information.
|
||||||
|
|
||||||
`release-notes` [`previous_tag`] [`end_ref`]:
|
### release-notes [previous_tag] [end_ref]:
|
||||||
|
|
||||||
Output the merged pull requests on Homebrew/brew between two Git refs.
|
Output the merged pull requests on Homebrew/brew between two Git refs.
|
||||||
If no `previous_tag` is provided it defaults to the latest tag.
|
If no `previous_tag` is provided it defaults to the latest tag.
|
||||||
@ -942,7 +940,7 @@ Output as a Markdown list.
|
|||||||
Run a Ruby instance with Homebrew's libraries loaded.
|
Run a Ruby instance with Homebrew's libraries loaded.
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
`tap-new` `user``/``repo`:
|
### tap-new [user]/[repo]:
|
||||||
|
|
||||||
Generate the template files for a new tap.
|
Generate the template files for a new tap.
|
||||||
|
|
||||||
@ -951,7 +949,7 @@ Display any debugging information.
|
|||||||
* `-v`, `--verbose`:
|
* `-v`, `--verbose`:
|
||||||
Make some output more verbose.
|
Make some output more verbose.
|
||||||
|
|
||||||
* `test` [`--devel`|`--HEAD`] [`--debug`] [`--keep-tmp`] `formula`:
|
### test [--devel|--HEAD] [--debug] [--keep-tmp] [formula]:
|
||||||
Most formulae provide a test method. `brew test` `formula` runs this
|
Most formulae provide a test method. `brew test` `formula` runs this
|
||||||
test method. There is no standard output or return code, but it should
|
test method. There is no standard output or return code, but it should
|
||||||
generally indicate to the user if something is wrong with the installed
|
generally indicate to the user if something is wrong with the installed
|
||||||
@ -968,7 +966,7 @@ Make some output more verbose.
|
|||||||
|
|
||||||
Example: `brew install jruby && brew test jruby`
|
Example: `brew install jruby && brew test jruby`
|
||||||
|
|
||||||
`tests` [`options`] `formula`:
|
### tests [options] [formula]:
|
||||||
|
|
||||||
Run Homebrew's unit and integration tests. If provided,
|
Run Homebrew's unit and integration tests. If provided,
|
||||||
`--only=``test_script` runs only `test_script`_spec.rb, and `--seed`
|
`--only=``test_script` runs only `test_script`_spec.rb, and `--seed`
|
||||||
@ -991,7 +989,7 @@ Make some output more verbose.
|
|||||||
* `-d`, `--debug`:
|
* `-d`, `--debug`:
|
||||||
Display any debugging information.
|
Display any debugging information.
|
||||||
|
|
||||||
`update-test` [`options`]:
|
### update-test [options]:
|
||||||
|
|
||||||
Runs a test of `brew update` with a new repository clone.
|
Runs a test of `brew update` with a new repository clone.
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BREW\-CASK" "1" "September 2018" "Homebrew" "brew-cask"
|
.TH "BREW\-CASK" "1" "October 2018" "Homebrew" "brew-cask"
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbrew\-cask\fR \- a friendly binary installer for macOS
|
\fBbrew\-cask\fR \- a friendly binary installer for macOS
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
.\" generated with Ronn/v0.7.3
|
.\" generated with Ronn/v0.7.3
|
||||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||||
.
|
.
|
||||||
.TH "BREW" "1" "September 2018" "Homebrew" "brew"
|
.TH "BREW" "1" "October 2018" "Homebrew" "brew"
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBbrew\fR \- The missing package manager for macOS
|
\fBbrew\fR \- The missing package manager for macOS
|
||||||
@ -620,13 +620,9 @@ If \fB\-\-merge\fR is specified then \fBgit merge\fR is used to include updates
|
|||||||
If \fB\-\-force\fR (or \fB\-f\fR) is specified then always do a slower, full update check even if unnecessary\.
|
If \fB\-\-force\fR (or \fB\-f\fR) is specified then always do a slower, full update check even if unnecessary\.
|
||||||
.
|
.
|
||||||
.SH "DEVELOPER COMMANDS"
|
.SH "DEVELOPER COMMANDS"
|
||||||
\fBaudit\fR [\fIoptions\fR] [\fIformulae\fR]:
|
|
||||||
.
|
.
|
||||||
.P
|
.SS "audit [options] [formulae]:"
|
||||||
Check \fIformulae\fR for Homebrew coding style violations\. This should be run before submitting a new formula\.
|
Check \fIformulae\fR for Homebrew coding style violations\. This should be run before submitting a new formula\. If no \fIformulae\fR are provided, all of them are checked\.
|
||||||
.
|
|
||||||
.P
|
|
||||||
If no \fIformulae\fR are provided, all of them are checked\.
|
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-strict\fR
|
\fB\-\-strict\fR
|
||||||
@ -680,14 +676,8 @@ Make some output more verbose\.
|
|||||||
\fB\-d\fR, \fB\-\-debug\fR
|
\fB\-d\fR, \fB\-\-debug\fR
|
||||||
Display any debugging information\.
|
Display any debugging information\.
|
||||||
.
|
.
|
||||||
.P
|
.SS "bottle [options] [formulae]:"
|
||||||
\fBbottle\fR [\fIoptions\fR] [\fIformulae\fR]:
|
Generate a bottle (binary package) from a formula installed with \fB\-\-build\-bottle\fR\. If the formula specifies a rebuild version, it will be incremented in the generated DSL\. Passing \fB\-\-keep\-old\fR will attempt to keep it at its original value, while \fB\-\-no\-rebuild\fR will remove it\.
|
||||||
.
|
|
||||||
.P
|
|
||||||
Generate a bottle (binary package) from a formula installed with \fB\-\-build\-bottle\fR\.
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
If the formula specifies a rebuild version, it will be incremented in the generated DSL\. Passing \fB\-\-keep\-old\fR will attempt to keep it at its original value, while \fB\-\-no\-rebuild\fR will remove it\.
|
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-skip\-relocation\fR
|
\fB\-\-skip\-relocation\fR
|
||||||
@ -737,10 +727,7 @@ Make some output more verbose\.
|
|||||||
\fB\-d\fR, \fB\-\-debug\fR
|
\fB\-d\fR, \fB\-\-debug\fR
|
||||||
Display any debugging information\.
|
Display any debugging information\.
|
||||||
.
|
.
|
||||||
.P
|
.SS "bump\-formula\-pr [options] [formula]:"
|
||||||
\fBbump\-formula\-pr\fR [\fIoptions\fR] \fIformula\fR:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Creates a pull request to update the formula with a new URL or a new tag\.
|
Creates a pull request to update the formula with a new URL or a new tag\.
|
||||||
.
|
.
|
||||||
.P
|
.P
|
||||||
@ -823,10 +810,7 @@ Make some output more verbose\.
|
|||||||
\fB\-d\fR, \fB\-\-debug\fR
|
\fB\-d\fR, \fB\-\-debug\fR
|
||||||
Display any debugging information\.
|
Display any debugging information\.
|
||||||
.
|
.
|
||||||
.P
|
.SS "create URL [options]:"
|
||||||
\fBcreate\fR \fIURL\fR [\fIoptions\fR]:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Generate a formula for the downloadable file at \fIURL\fR and open it in the editor\. Homebrew will attempt to automatically derive the formula name and version, but if it fails, you\'ll have to make your own template\. The \fBwget\fR formula serves as a simple example\. For the complete API have a look at \fIhttp://www\.rubydoc\.info/github/Homebrew/brew/master/Formula\fR\.
|
Generate a formula for the downloadable file at \fIURL\fR and open it in the editor\. Homebrew will attempt to automatically derive the formula name and version, but if it fails, you\'ll have to make your own template\. The \fBwget\fR formula serves as a simple example\. For the complete API have a look at \fIhttp://www\.rubydoc\.info/github/Homebrew/brew/master/Formula\fR\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
@ -873,12 +857,10 @@ Make some output more verbose\.
|
|||||||
\fB\-d\fR, \fB\-\-debug\fR
|
\fB\-d\fR, \fB\-\-debug\fR
|
||||||
Display any debugging information\.
|
Display any debugging information\.
|
||||||
.
|
.
|
||||||
.TP
|
.SS "edit:"
|
||||||
\fBedit\fR
|
|
||||||
Open all of Homebrew for editing\.
|
Open all of Homebrew for editing\.
|
||||||
.
|
.
|
||||||
.TP
|
.SS "edit [formula]:"
|
||||||
\fBedit\fR \fIformula\fR
|
|
||||||
Open \fIformula\fR in the editor\.
|
Open \fIformula\fR in the editor\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
@ -893,10 +875,7 @@ Make some output more verbose\.
|
|||||||
\fB\-d\fR, \fB\-\-debug\fR
|
\fB\-d\fR, \fB\-\-debug\fR
|
||||||
Display any debugging information\.
|
Display any debugging information\.
|
||||||
.
|
.
|
||||||
.P
|
.SS "formula [formula]:"
|
||||||
\fBformula\fR \fIformula\fR:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Display the path where \fIformula\fR is located\.
|
Display the path where \fIformula\fR is located\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
@ -907,10 +886,7 @@ Display any debugging information\.
|
|||||||
\fB\-v\fR, \fB\-\-verbose\fR
|
\fB\-v\fR, \fB\-\-verbose\fR
|
||||||
Make some output more verbose\.
|
Make some output more verbose\.
|
||||||
.
|
.
|
||||||
.P
|
.SS "irb [options]:"
|
||||||
\fBirb\fR [\fIoptions\fR]:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Enter the interactive Homebrew Ruby shell\.
|
Enter the interactive Homebrew Ruby shell\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
@ -921,10 +897,7 @@ Show several examples\.
|
|||||||
\fB\-\-pry\fR
|
\fB\-\-pry\fR
|
||||||
Pry will be used instead of irb if \fB\-\-pry\fR is passed or HOMEBREW_PRY is set\.
|
Pry will be used instead of irb if \fB\-\-pry\fR is passed or HOMEBREW_PRY is set\.
|
||||||
.
|
.
|
||||||
.P
|
.SS "linkage [options] [formula]:"
|
||||||
\fBlinkage\fR [\fIoptions\fR] \fIformula\fR:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Checks the library links of an installed formula\.
|
Checks the library links of an installed formula\.
|
||||||
.
|
.
|
||||||
.P
|
.P
|
||||||
@ -950,10 +923,7 @@ Make some output more verbose\.
|
|||||||
\fB\-d\fR, \fB\-\-debug\fR
|
\fB\-d\fR, \fB\-\-debug\fR
|
||||||
Display any debugging information\.
|
Display any debugging information\.
|
||||||
.
|
.
|
||||||
.P
|
.SS "man [options]:"
|
||||||
\fBman\fR [\fIoptions\fR]:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Generate Homebrew\'s manpages\.
|
Generate Homebrew\'s manpages\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
@ -964,10 +934,7 @@ Return a failing status code if changes are detected in the manpage outputs\. Th
|
|||||||
\fB\-\-link\fR
|
\fB\-\-link\fR
|
||||||
It is now done automatically by \fBbrew update\fR\.
|
It is now done automatically by \fBbrew update\fR\.
|
||||||
.
|
.
|
||||||
.P
|
.SS "mirror [formulae]:"
|
||||||
\fBmirror\fR [\fIformulae\fR]:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Reuploads the stable URL for a formula to Bintray to use it as a mirror\.
|
Reuploads the stable URL for a formula to Bintray to use it as a mirror\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
@ -978,15 +945,12 @@ Display any debugging information\.
|
|||||||
\fB\-v\fR, \fB\-\-verbose\fR
|
\fB\-v\fR, \fB\-\-verbose\fR
|
||||||
Make some output more verbose\.
|
Make some output more verbose\.
|
||||||
.
|
.
|
||||||
.TP
|
.SS "prof [ruby options]:"
|
||||||
\fBprof\fR [\fIruby options\fR]
|
.
|
||||||
|
.IP
|
||||||
Run Homebrew with the Ruby profiler\. For example:
|
Run Homebrew with the Ruby profiler\. For example:
|
||||||
|
|
||||||
.
|
.
|
||||||
.P
|
.SS "pull [options] [formula]:"
|
||||||
\fBbump\-formula\-pr\fR [\fIoptions\fR] \fIformula\fR:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Gets a patch from a GitHub commit or pull request and applies it to Homebrew\. Optionally, installs the formulae changed by the patch\.
|
Gets a patch from a GitHub commit or pull request and applies it to Homebrew\. Optionally, installs the formulae changed by the patch\.
|
||||||
.
|
.
|
||||||
.P
|
.P
|
||||||
@ -1056,10 +1020,7 @@ Make some output more verbose\.
|
|||||||
\fB\-d\fR, \fB\-\-debug\fR
|
\fB\-d\fR, \fB\-\-debug\fR
|
||||||
Display any debugging information\.
|
Display any debugging information\.
|
||||||
.
|
.
|
||||||
.P
|
.SS "release\-notes [previous_tag] [end_ref]:"
|
||||||
\fBrelease\-notes\fR [\fIprevious_tag\fR] [\fIend_ref\fR]:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Output the merged pull requests on Homebrew/brew between two Git refs\. If no \fIprevious_tag\fR is provided it defaults to the latest tag\. If no \fIend_ref\fR is provided it defaults to \fBorigin/master\fR\.
|
Output the merged pull requests on Homebrew/brew between two Git refs\. If no \fIprevious_tag\fR is provided it defaults to the latest tag\. If no \fIend_ref\fR is provided it defaults to \fBorigin/master\fR\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
@ -1070,10 +1031,7 @@ Output as a Markdown list\.
|
|||||||
\fBruby\fR [\fIruby options\fR]
|
\fBruby\fR [\fIruby options\fR]
|
||||||
Run a Ruby instance with Homebrew\'s libraries loaded\. For example:
|
Run a Ruby instance with Homebrew\'s libraries loaded\. For example:
|
||||||
.
|
.
|
||||||
.P
|
.SS "tap\-new [user]/[repo]:"
|
||||||
\fBtap\-new\fR \fIuser\fR\fB/\fR\fIrepo\fR:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Generate the template files for a new tap\.
|
Generate the template files for a new tap\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
@ -1084,8 +1042,9 @@ Display any debugging information\.
|
|||||||
\fB\-v\fR, \fB\-\-verbose\fR
|
\fB\-v\fR, \fB\-\-verbose\fR
|
||||||
Make some output more verbose\.
|
Make some output more verbose\.
|
||||||
.
|
.
|
||||||
.TP
|
.SS "test [\-\-devel|\-\-HEAD] [\-\-debug] [\-\-keep\-tmp] [formula]:"
|
||||||
\fBtest\fR [\fB\-\-devel\fR|\fB\-\-HEAD\fR] [\fB\-\-debug\fR] [\fB\-\-keep\-tmp\fR] \fIformula\fR
|
.
|
||||||
|
.IP
|
||||||
Most formulae provide a test method\. \fBbrew test\fR \fIformula\fR runs this test method\. There is no standard output or return code, but it should generally indicate to the user if something is wrong with the installed formula\.
|
Most formulae provide a test method\. \fBbrew test\fR \fIformula\fR runs this test method\. There is no standard output or return code, but it should generally indicate to the user if something is wrong with the installed formula\.
|
||||||
.
|
.
|
||||||
.IP
|
.IP
|
||||||
@ -1099,12 +1058,8 @@ If \fB\-\-keep\-tmp\fR is passed, the temporary files created for the test are n
|
|||||||
.
|
.
|
||||||
.IP
|
.IP
|
||||||
Example: \fBbrew install jruby && brew test jruby\fR
|
Example: \fBbrew install jruby && brew test jruby\fR
|
||||||
|
|
||||||
.
|
.
|
||||||
.P
|
.SS "tests [options] [formula]:"
|
||||||
\fBtests\fR [\fIoptions\fR] \fIformula\fR:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Run Homebrew\'s unit and integration tests\. If provided, \fB\-\-only=\fR\fItest_script\fR runs only \fItest_script\fR_spec\.rb, and \fB\-\-seed\fR randomizes tests with the provided value instead of a random seed\.
|
Run Homebrew\'s unit and integration tests\. If provided, \fB\-\-only=\fR\fItest_script\fR runs only \fItest_script\fR_spec\.rb, and \fB\-\-seed\fR randomizes tests with the provided value instead of a random seed\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
@ -1139,10 +1094,7 @@ Make some output more verbose\.
|
|||||||
\fB\-d\fR, \fB\-\-debug\fR
|
\fB\-d\fR, \fB\-\-debug\fR
|
||||||
Display any debugging information\.
|
Display any debugging information\.
|
||||||
.
|
.
|
||||||
.P
|
.SS "update\-test [options]:"
|
||||||
\fBupdate\-test\fR [\fIoptions\fR]:
|
|
||||||
.
|
|
||||||
.P
|
|
||||||
Runs a test of \fBbrew update\fR with a new repository clone\.
|
Runs a test of \fBbrew update\fR with a new repository clone\.
|
||||||
.
|
.
|
||||||
.P
|
.P
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user