mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
Use docs.brew.sh links.
This commit is contained in:
parent
3568cf3a40
commit
a3bffe70bc
@ -5,7 +5,7 @@ First time contributing to Homebrew? Read our [Code of Conduct](https://github.c
|
|||||||
|
|
||||||
* run `brew update` (twice)
|
* run `brew update` (twice)
|
||||||
* run and read `brew doctor`
|
* run and read `brew doctor`
|
||||||
* read [the Troubleshooting Checklist](https://github.com/Homebrew/brew/blob/master/docs/Troubleshooting.md#troubleshooting)
|
* read [the Troubleshooting Checklist](http://docs.brew.sh/Troubleshooting.html)
|
||||||
* open an issue on the formula's repository or on Homebrew/brew if it's not a formula-specific issue
|
* open an issue on the formula's repository or on Homebrew/brew if it's not a formula-specific issue
|
||||||
|
|
||||||
### Propose a feature
|
### Propose a feature
|
||||||
|
@ -3,6 +3,6 @@ This is the (partially) documented public API for Homebrew.
|
|||||||
|
|
||||||
The main class you should look at is the {Formula} class (and classes linked from there). That's the class that's used to create Homebrew formulae (i.e. package descriptions). Assume anything else you stumble upon is private.
|
The main class you should look at is the {Formula} class (and classes linked from there). That's the class that's used to create Homebrew formulae (i.e. package descriptions). Assume anything else you stumble upon is private.
|
||||||
|
|
||||||
You may also find the [Formula Cookbook](https://github.com/Homebrew/brew/blob/master/docs/Formula-Cookbook.md) and [Ruby Style Guide](https://github.com/styleguide/ruby) helpful in creating formulae.
|
You may also find the [Formula Cookbook](http://docs.brew.sh/Formula-Cookbook.html) and [Ruby Style Guide](https://github.com/styleguide/ruby) helpful in creating formulae.
|
||||||
|
|
||||||
Good luck!
|
Good luck!
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#: * `analytics` [`state`]:
|
#: * `analytics` [`state`]:
|
||||||
#: Display anonymous user behaviour analytics state.
|
#: Display anonymous user behaviour analytics state.
|
||||||
#: Read more at <https://git.io/brew-analytics>.
|
#: Read more at <http://docs.brew.sh/Analytics.html>.
|
||||||
#:
|
#:
|
||||||
#: * `analytics` (`on`|`off`):
|
#: * `analytics` (`on`|`off`):
|
||||||
#: Turn on/off Homebrew's analytics.
|
#: Turn on/off Homebrew's analytics.
|
||||||
|
@ -16,7 +16,7 @@ Troubleshooting:
|
|||||||
Developers:
|
Developers:
|
||||||
brew create [URL [--no-fetch]]
|
brew create [URL [--no-fetch]]
|
||||||
brew edit [FORMULA...]
|
brew edit [FORMULA...]
|
||||||
https://github.com/Homebrew/brew/blob/master/docs/Formula-Cookbook.md
|
http://docs.brew.sh/Formula-Cookbook.html
|
||||||
|
|
||||||
Further help:
|
Further help:
|
||||||
man brew
|
man brew
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
#: information on all installed formulae.
|
#: information on all installed formulae.
|
||||||
#:
|
#:
|
||||||
#: See the docs for examples of using the JSON:
|
#: See the docs for examples of using the JSON:
|
||||||
#: <https://github.com/Homebrew/brew/blob/master/docs/Querying-Brew.md>
|
#: <http://docs.brew.sh/Querying-Brew.html>
|
||||||
|
|
||||||
require "blacklist"
|
require "blacklist"
|
||||||
require "caveats"
|
require "caveats"
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#: Pass `--installed` to get information on installed taps.
|
#: Pass `--installed` to get information on installed taps.
|
||||||
#:
|
#:
|
||||||
#: See the docs for examples of using the JSON:
|
#: See the docs for examples of using the JSON:
|
||||||
#: <https://github.com/Homebrew/brew/blob/master/docs/Querying-Brew.md>
|
#: <http://docs.brew.sh/Querying-Brew.html>
|
||||||
|
|
||||||
require "tap"
|
require "tap"
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ module Homebrew
|
|||||||
ohai "Homebrew has enabled anonymous aggregate user behaviour analytics."
|
ohai "Homebrew has enabled anonymous aggregate user behaviour analytics."
|
||||||
puts <<-EOS.undent
|
puts <<-EOS.undent
|
||||||
#{Tty.bold}Read the analytics documentation (and how to opt-out) here:
|
#{Tty.bold}Read the analytics documentation (and how to opt-out) here:
|
||||||
#{Formatter.url("https://git.io/brew-analytics")}#{Tty.reset}
|
#{Formatter.url("http://docs.brew.sh/Analytics.html")}#{Tty.reset}
|
||||||
|
|
||||||
EOS
|
EOS
|
||||||
|
|
||||||
|
@ -159,7 +159,7 @@ class FormulaCreator
|
|||||||
end
|
end
|
||||||
|
|
||||||
def template; <<-EOS.undent
|
def template; <<-EOS.undent
|
||||||
# Documentation: https://github.com/Homebrew/brew/blob/master/docs/Formula-Cookbook.md
|
# Documentation: http://docs.brew.sh/Formula-Cookbook.html
|
||||||
# http://www.rubydoc.info/github/Homebrew/brew/master/Formula
|
# http://www.rubydoc.info/github/Homebrew/brew/master/Formula
|
||||||
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
|
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ require "migrator"
|
|||||||
# @see SharedEnvExtension
|
# @see SharedEnvExtension
|
||||||
# @see FileUtils
|
# @see FileUtils
|
||||||
# @see Pathname
|
# @see Pathname
|
||||||
# @see https://github.com/Homebrew/brew/blob/master/docs/Formula-Cookbook.md Formula Cookbook
|
# @see http://docs.brew.sh/Formula-Cookbook.html Formula Cookbook
|
||||||
# @see https://github.com/styleguide/ruby Ruby Style Guide
|
# @see https://github.com/styleguide/ruby Ruby Style Guide
|
||||||
#
|
#
|
||||||
# <pre>class Wget < Formula
|
# <pre>class Wget < Formula
|
||||||
@ -2059,7 +2059,7 @@ class Formula
|
|||||||
# and you haven't passed or previously used any options on this formula.
|
# and you haven't passed or previously used any options on this formula.
|
||||||
#
|
#
|
||||||
# If you maintain your own repository, you can add your own bottle links.
|
# If you maintain your own repository, you can add your own bottle links.
|
||||||
# https://github.com/Homebrew/brew/blob/master/docs/Bottles.md
|
# http://docs.brew.sh/Bottles.html
|
||||||
# You can ignore this block entirely if submitting to Homebrew/Homebrew, It'll be
|
# You can ignore this block entirely if submitting to Homebrew/Homebrew, It'll be
|
||||||
# handled for you by the Brew Test Bot.
|
# handled for you by the Brew Test Bot.
|
||||||
#
|
#
|
||||||
|
@ -76,7 +76,7 @@ scripts that reside somewhere in the `PATH`, named `brew-`<cmdname> or
|
|||||||
to create your own commands without modifying Homebrew's internals.
|
to create your own commands without modifying Homebrew's internals.
|
||||||
|
|
||||||
Instructions for creating your own commands can be found in the docs:
|
Instructions for creating your own commands can be found in the docs:
|
||||||
<https://github.com/Homebrew/brew/blob/master/docs/External-Commands.md>
|
<http://docs.brew.sh/External-Commands.html>
|
||||||
|
|
||||||
## SPECIFYING FORMULAE
|
## SPECIFYING FORMULAE
|
||||||
|
|
||||||
@ -197,7 +197,7 @@ can take several different forms:
|
|||||||
*Default:* the number of available CPU cores.
|
*Default:* the number of available CPU cores.
|
||||||
|
|
||||||
* `HOMEBREW_NO_ANALYTICS`:
|
* `HOMEBREW_NO_ANALYTICS`:
|
||||||
If set, Homebrew will not send analytics. See: <https://github.com/Homebrew/brew/blob/master/docs/Analytics.md#analytics>
|
If set, Homebrew will not send analytics. See: <http://docs.brew.sh/Analytics.html>
|
||||||
|
|
||||||
* `HOMEBREW_NO_AUTO_UPDATE`:
|
* `HOMEBREW_NO_AUTO_UPDATE`:
|
||||||
If set, Homebrew will not auto-update before running `brew install`,
|
If set, Homebrew will not auto-update before running `brew install`,
|
||||||
|
@ -15,7 +15,7 @@ module OS
|
|||||||
require "os/mac"
|
require "os/mac"
|
||||||
# Don't tell people to report issues on unsupported versions of macOS.
|
# Don't tell people to report issues on unsupported versions of macOS.
|
||||||
if !OS::Mac.prerelease? && !OS::Mac.outdated_release?
|
if !OS::Mac.prerelease? && !OS::Mac.outdated_release?
|
||||||
ISSUES_URL = "https://git.io/brew-troubleshooting".freeze
|
ISSUES_URL = "http://docs.brew.sh/Troubleshooting.html".freeze
|
||||||
end
|
end
|
||||||
PATH_OPEN = "/usr/bin/open".freeze
|
PATH_OPEN = "/usr/bin/open".freeze
|
||||||
# compatibility
|
# compatibility
|
||||||
|
@ -35,7 +35,7 @@ module Utils
|
|||||||
end
|
end
|
||||||
|
|
||||||
# Send analytics. Don't send or store any personally identifiable information.
|
# Send analytics. Don't send or store any personally identifiable information.
|
||||||
# https://github.com/Homebrew/brew/blob/master/docs/Analytics.md
|
# http://docs.brew.sh/Analytics.html
|
||||||
# https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide
|
# https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide
|
||||||
# https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters
|
# https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters
|
||||||
if ENV["HOMEBREW_ANALYTICS_DEBUG"]
|
if ENV["HOMEBREW_ANALYTICS_DEBUG"]
|
||||||
|
@ -107,7 +107,7 @@ report-analytics-screenview-command() {
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Send analytics. Don't send or store any personally identifiable information.
|
# Send analytics. Don't send or store any personally identifiable information.
|
||||||
# https://github.com/Homebrew/brew/blob/master/docs/Analytics.md
|
# http://docs.brew.sh/Analytics.html
|
||||||
# https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide#screenView
|
# https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide#screenView
|
||||||
# https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters
|
# https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters
|
||||||
if [[ -z "$HOMEBREW_ANALYTICS_DEBUG" ]]
|
if [[ -z "$HOMEBREW_ANALYTICS_DEBUG" ]]
|
||||||
|
@ -18,7 +18,7 @@ cd "$(brew --repo)" && git fetch && git reset --hard origin/master && brew updat
|
|||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
First, please run `brew update` and `brew doctor`.
|
First, please run `brew update` and `brew doctor`.
|
||||||
|
|
||||||
Second, read the [Troubleshooting Checklist](https://github.com/Homebrew/brew/blob/master/docs/Troubleshooting.md#troubleshooting).
|
Second, read the [Troubleshooting Checklist](http://docs.brew.sh/Troubleshooting.html).
|
||||||
|
|
||||||
**If you don't read these it will take us far longer to help you with your problem.**
|
**If you don't read these it will take us far longer to help you with your problem.**
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ We'd love you to contribute to Homebrew. First, please read our [Contribution Gu
|
|||||||
|
|
||||||
We explicitly welcome contributions from people who have never contributed to open-source before: we were all beginners once! We can help build on a partially working pull request with the aim of getting it merged. We are also actively seeking to diversify our contributors and especially welcome contributions from women from all backgrounds and people of colour.
|
We explicitly welcome contributions from people who have never contributed to open-source before: we were all beginners once! We can help build on a partially working pull request with the aim of getting it merged. We are also actively seeking to diversify our contributors and especially welcome contributions from women from all backgrounds and people of colour.
|
||||||
|
|
||||||
A good starting point for contributing is running `brew audit` (or `brew audit --strict`) with some of the packages you use (e.g. `brew audit wget` if you use `wget`) and then read through the warnings, try to fix them until `brew audit` shows no results and [submit a pull request](https://github.com/Homebrew/brew/blob/master/docs/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md). If no formulae you use have warnings you can run `brew audit` without arguments to have it run on all packages and pick one. Good luck!
|
A good starting point for contributing is running `brew audit` (or `brew audit --strict`) with some of the packages you use (e.g. `brew audit wget` if you use `wget`) and then read through the warnings, try to fix them until `brew audit` shows no results and [submit a pull request](http://docs.brew.sh/How-To-Open-a-Homebrew-Pull-Request.html). If no formulae you use have warnings you can run `brew audit` without arguments to have it run on all packages and pick one. Good luck!
|
||||||
|
|
||||||
## Security
|
## Security
|
||||||
Please report security issues to security@brew.sh.
|
Please report security issues to security@brew.sh.
|
||||||
@ -61,7 +61,7 @@ Please consider a regular donation through Patreon:
|
|||||||
[](https://www.patreon.com/homebrew)
|
[](https://www.patreon.com/homebrew)
|
||||||
|
|
||||||
## Sponsors
|
## Sponsors
|
||||||
Our CI infrastructure was paid for by [our Kickstarter supporters](https://github.com/Homebrew/brew/blob/master/docs/Kickstarter-Supporters.md).
|
Our CI infrastructure was paid for by [our Kickstarter supporters](http://docs.brew.sh/Kickstarter-Supporters.html).
|
||||||
|
|
||||||
Our CI infrastructure is hosted by [The Positive Internet Company](http://www.positive-internet.com).
|
Our CI infrastructure is hosted by [The Positive Internet Company](http://www.positive-internet.com).
|
||||||
|
|
||||||
|
@ -352,7 +352,7 @@ If you have already forked Homebrew on GitHub, then you can manually push (just
|
|||||||
git push https://github.com/myname/homebrew-core/ <what-you-called-your-branch>
|
git push https://github.com/myname/homebrew-core/ <what-you-called-your-branch>
|
||||||
```
|
```
|
||||||
|
|
||||||
Now, please [open a pull request](https://github.com/Homebrew/brew/blob/master/docs/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md#how-to-open-a-homebrew-pull-request-and-get-it-merged) for your changes.
|
Now, please [open a pull request](http://docs.brew.sh/How-To-Open-a-Homebrew-Pull-Request.html) for your changes.
|
||||||
|
|
||||||
* One formula per commit; one commit per formula
|
* One formula per commit; one commit per formula
|
||||||
* Keep merge commits out of the pull request
|
* Keep merge commits out of the pull request
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
## Installing previous versions of formulae
|
## Installing previous versions of formulae
|
||||||
|
|
||||||
The supported method of installing specific versions of
|
The supported method of installing specific versions of
|
||||||
some formulae is to see if there is a versions formula like e.g. `gcc@6` available. If the version you’re looking for isn’t available, consider [opening a
|
some formulae is to see if there is a versions formula like e.g. `gcc@6` available. If the version you’re looking for isn’t available, consider [opening a pull request](How-To-Open-a-Homebrew-Pull-Request.md)!
|
||||||
pull request](https://github.com/Homebrew/brew/blob/master/docs/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md)!
|
|
||||||
|
|
||||||
### Installing directly from pull-requests
|
### Installing directly from pull-requests
|
||||||
You can [browse pull requests](https://github.com/Homebrew/homebrew-core/pulls)
|
You can [browse pull requests](https://github.com/Homebrew/homebrew-core/pulls)
|
||||||
|
@ -36,7 +36,7 @@ If no search term is given, all locally available formulae are listed.</p></dd>
|
|||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
<dt><code>analytics</code> [<code>state</code>]</dt><dd><p>Display anonymous user behaviour analytics state.
|
<dt><code>analytics</code> [<code>state</code>]</dt><dd><p>Display anonymous user behaviour analytics state.
|
||||||
Read more at <a href="https://git.io/brew-analytics" data-bare-link="true">https://git.io/brew-analytics</a>.</p></dd>
|
Read more at <a href="http://docs.brew.sh/Analytics.html" data-bare-link="true">http://docs.brew.sh/Analytics.html</a>.</p></dd>
|
||||||
<dt><code>analytics</code> (<code>on</code>|<code>off</code>)</dt><dd><p>Turn on/off Homebrew's analytics.</p></dd>
|
<dt><code>analytics</code> (<code>on</code>|<code>off</code>)</dt><dd><p>Turn on/off Homebrew's analytics.</p></dd>
|
||||||
<dt><code>analytics</code> <code>regenerate-uuid</code></dt><dd><p>Regenerate UUID used in Homebrew's analytics.</p></dd>
|
<dt><code>analytics</code> <code>regenerate-uuid</code></dt><dd><p>Regenerate UUID used in Homebrew's analytics.</p></dd>
|
||||||
<dt><code>cat</code> <var>formula</var></dt><dd><p>Display the source to <var>formula</var>.</p></dd>
|
<dt><code>cat</code> <var>formula</var></dt><dd><p>Display the source to <var>formula</var>.</p></dd>
|
||||||
@ -152,7 +152,7 @@ for <var>version</var> is <code>v1</code>.</p>
|
|||||||
information on all installed formulae.</p>
|
information on all installed formulae.</p>
|
||||||
|
|
||||||
<p>See the docs for examples of using the JSON:
|
<p>See the docs for examples of using the JSON:
|
||||||
<a href="https://github.com/Homebrew/brew/blob/master/docs/Querying-Brew.md" data-bare-link="true">https://github.com/Homebrew/brew/blob/master/docs/Querying-Brew.md</a></p></dd>
|
<a href="http://docs.brew.sh/Querying-Brew.html" data-bare-link="true">http://docs.brew.sh/Querying-Brew.html</a></p></dd>
|
||||||
<dt><code>install</code> [<code>--debug</code>] [<code>--env=</code><var>std</var>|<var>super</var>] [<code>--ignore-dependencies</code>] [<code>--only-dependencies</code>] [<code>--cc=</code><var>compiler</var>] [<code>--build-from-source</code>] [<code>--devel</code>|<code>--HEAD</code>] [<code>--keep-tmp</code>] <var>formula</var></dt><dd><p>Install <var>formula</var>.</p>
|
<dt><code>install</code> [<code>--debug</code>] [<code>--env=</code><var>std</var>|<var>super</var>] [<code>--ignore-dependencies</code>] [<code>--only-dependencies</code>] [<code>--cc=</code><var>compiler</var>] [<code>--build-from-source</code>] [<code>--devel</code>|<code>--HEAD</code>] [<code>--keep-tmp</code>] <var>formula</var></dt><dd><p>Install <var>formula</var>.</p>
|
||||||
|
|
||||||
<p><var>formula</var> is usually the name of the formula to install, but it can be specified
|
<p><var>formula</var> is usually the name of the formula to install, but it can be specified
|
||||||
@ -352,7 +352,7 @@ for <var>version</var> is <code>v1</code>.</p>
|
|||||||
<p>Pass <code>--installed</code> to get information on installed taps.</p>
|
<p>Pass <code>--installed</code> to get information on installed taps.</p>
|
||||||
|
|
||||||
<p>See the docs for examples of using the JSON:
|
<p>See the docs for examples of using the JSON:
|
||||||
<a href="https://github.com/Homebrew/brew/blob/master/docs/Querying-Brew.md" data-bare-link="true">https://github.com/Homebrew/brew/blob/master/docs/Querying-Brew.md</a></p></dd>
|
<a href="http://docs.brew.sh/Querying-Brew.html" data-bare-link="true">http://docs.brew.sh/Querying-Brew.html</a></p></dd>
|
||||||
<dt><code>tap-pin</code> <var>tap</var></dt><dd><p>Pin <var>tap</var>, prioritizing its formulae over core when formula names are supplied
|
<dt><code>tap-pin</code> <var>tap</var></dt><dd><p>Pin <var>tap</var>, prioritizing its formulae over core when formula names are supplied
|
||||||
by the user. See also <code>tap-unpin</code>.</p></dd>
|
by the user. See also <code>tap-unpin</code>.</p></dd>
|
||||||
<dt><code>tap-unpin</code> <var>tap</var></dt><dd><p>Unpin <var>tap</var> so its formulae are no longer prioritized. See also <code>tap-pin</code>.</p></dd>
|
<dt><code>tap-unpin</code> <var>tap</var></dt><dd><p>Unpin <var>tap</var> so its formulae are no longer prioritized. See also <code>tap-pin</code>.</p></dd>
|
||||||
@ -641,7 +641,7 @@ scripts that reside somewhere in the <code>PATH</code>, named <code>brew-</code>
|
|||||||
to create your own commands without modifying Homebrew's internals.</p>
|
to create your own commands without modifying Homebrew's internals.</p>
|
||||||
|
|
||||||
<p>Instructions for creating your own commands can be found in the docs:
|
<p>Instructions for creating your own commands can be found in the docs:
|
||||||
<a href="https://github.com/Homebrew/brew/blob/master/docs/External-Commands.md" data-bare-link="true">https://github.com/Homebrew/brew/blob/master/docs/External-Commands.md</a></p>
|
<a href="http://docs.brew.sh/External-Commands.html" data-bare-link="true">http://docs.brew.sh/External-Commands.html</a></p>
|
||||||
|
|
||||||
<h2 id="SPECIFYING-FORMULAE">SPECIFYING FORMULAE</h2>
|
<h2 id="SPECIFYING-FORMULAE">SPECIFYING FORMULAE</h2>
|
||||||
|
|
||||||
@ -720,7 +720,7 @@ Homebrew uses the GitHub API for features such as <code>brew search</code>.</p>
|
|||||||
the number of parallel jobs to run when building with <code>make</code>(1).</p>
|
the number of parallel jobs to run when building with <code>make</code>(1).</p>
|
||||||
|
|
||||||
<p><em>Default:</em> the number of available CPU cores.</p></dd>
|
<p><em>Default:</em> the number of available CPU cores.</p></dd>
|
||||||
<dt><code>HOMEBREW_NO_ANALYTICS</code></dt><dd><p>If set, Homebrew will not send analytics. See: <a href="https://github.com/Homebrew/brew/blob/master/docs/Analytics.md#analytics" data-bare-link="true">https://github.com/Homebrew/brew/blob/master/docs/Analytics.md#analytics</a></p></dd>
|
<dt><code>HOMEBREW_NO_ANALYTICS</code></dt><dd><p>If set, Homebrew will not send analytics. See: <a href="http://docs.brew.sh/Analytics.html" data-bare-link="true">http://docs.brew.sh/Analytics.html</a></p></dd>
|
||||||
<dt><code>HOMEBREW_NO_AUTO_UPDATE</code></dt><dd><p>If set, Homebrew will not auto-update before running <code>brew install</code>,
|
<dt><code>HOMEBREW_NO_AUTO_UPDATE</code></dt><dd><p>If set, Homebrew will not auto-update before running <code>brew install</code>,
|
||||||
<code>brew upgrade</code> or <code>brew tap</code>.</p></dd>
|
<code>brew upgrade</code> or <code>brew tap</code>.</p></dd>
|
||||||
<dt><code>HOMEBREW_NO_EMOJI</code></dt><dd><p>If set, Homebrew will not print the <code>HOMEBREW_INSTALL_BADGE</code> on a
|
<dt><code>HOMEBREW_NO_EMOJI</code></dt><dd><p>If set, Homebrew will not print the <code>HOMEBREW_INSTALL_BADGE</code> on a
|
||||||
|
@ -45,7 +45,7 @@ Perform a substring search of formula names for \fItext\fR\. If \fItext\fR is su
|
|||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fBanalytics\fR [\fBstate\fR]
|
\fBanalytics\fR [\fBstate\fR]
|
||||||
Display anonymous user behaviour analytics state\. Read more at \fIhttps://git\.io/brew\-analytics\fR\.
|
Display anonymous user behaviour analytics state\. Read more at \fIhttp://docs\.brew\.sh/Analytics\.html\fR\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fBanalytics\fR (\fBon\fR|\fBoff\fR)
|
\fBanalytics\fR (\fBon\fR|\fBoff\fR)
|
||||||
@ -213,7 +213,7 @@ Print a JSON representation of \fIformulae\fR\. Currently the only accepted valu
|
|||||||
Pass \fB\-\-all\fR to get information on all formulae, or \fB\-\-installed\fR to get information on all installed formulae\.
|
Pass \fB\-\-all\fR to get information on all formulae, or \fB\-\-installed\fR to get information on all installed formulae\.
|
||||||
.
|
.
|
||||||
.IP
|
.IP
|
||||||
See the docs for examples of using the JSON: \fIhttps://github\.com/Homebrew/brew/blob/master/docs/Querying\-Brew\.md\fR
|
See the docs for examples of using the JSON: \fIhttp://docs\.brew\.sh/Querying\-Brew\.html\fR
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fBinstall\fR [\fB\-\-debug\fR] [\fB\-\-env=\fR\fIstd\fR|\fIsuper\fR] [\fB\-\-ignore\-dependencies\fR] [\fB\-\-only\-dependencies\fR] [\fB\-\-cc=\fR\fIcompiler\fR] [\fB\-\-build\-from\-source\fR] [\fB\-\-devel\fR|\fB\-\-HEAD\fR] [\fB\-\-keep\-tmp\fR] \fIformula\fR
|
\fBinstall\fR [\fB\-\-debug\fR] [\fB\-\-env=\fR\fIstd\fR|\fIsuper\fR] [\fB\-\-ignore\-dependencies\fR] [\fB\-\-only\-dependencies\fR] [\fB\-\-cc=\fR\fIcompiler\fR] [\fB\-\-build\-from\-source\fR] [\fB\-\-devel\fR|\fB\-\-HEAD\fR] [\fB\-\-keep\-tmp\fR] \fIformula\fR
|
||||||
@ -479,7 +479,7 @@ Print a JSON representation of \fItaps\fR\. Currently the only accepted value fo
|
|||||||
Pass \fB\-\-installed\fR to get information on installed taps\.
|
Pass \fB\-\-installed\fR to get information on installed taps\.
|
||||||
.
|
.
|
||||||
.IP
|
.IP
|
||||||
See the docs for examples of using the JSON: \fIhttps://github\.com/Homebrew/brew/blob/master/docs/Querying\-Brew\.md\fR
|
See the docs for examples of using the JSON: \fIhttp://docs\.brew\.sh/Querying\-Brew\.html\fR
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fBtap\-pin\fR \fItap\fR
|
\fBtap\-pin\fR \fItap\fR
|
||||||
@ -838,7 +838,7 @@ Integrates Homebrew formulae with macOS\'s \fBlaunchctl\fR manager: \fIhttps://g
|
|||||||
Homebrew, like \fBgit\fR(1), supports external commands\. These are executable scripts that reside somewhere in the \fBPATH\fR, named \fBbrew\-\fR\fIcmdname\fR or \fBbrew\-\fR\fIcmdname\fR\fB\.rb\fR, which can be invoked like \fBbrew\fR \fIcmdname\fR\. This allows you to create your own commands without modifying Homebrew\'s internals\.
|
Homebrew, like \fBgit\fR(1), supports external commands\. These are executable scripts that reside somewhere in the \fBPATH\fR, named \fBbrew\-\fR\fIcmdname\fR or \fBbrew\-\fR\fIcmdname\fR\fB\.rb\fR, which can be invoked like \fBbrew\fR \fIcmdname\fR\. This allows you to create your own commands without modifying Homebrew\'s internals\.
|
||||||
.
|
.
|
||||||
.P
|
.P
|
||||||
Instructions for creating your own commands can be found in the docs: \fIhttps://github\.com/Homebrew/brew/blob/master/docs/External\-Commands\.md\fR
|
Instructions for creating your own commands can be found in the docs: \fIhttp://docs\.brew\.sh/External\-Commands\.html\fR
|
||||||
.
|
.
|
||||||
.SH "SPECIFYING FORMULAE"
|
.SH "SPECIFYING FORMULAE"
|
||||||
Many Homebrew commands accept one or more \fIformula\fR arguments\. These arguments can take several different forms:
|
Many Homebrew commands accept one or more \fIformula\fR arguments\. These arguments can take several different forms:
|
||||||
@ -957,7 +957,7 @@ If set, instructs Homebrew to use the value of \fBHOMEBREW_MAKE_JOBS\fR as the n
|
|||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fBHOMEBREW_NO_ANALYTICS\fR
|
\fBHOMEBREW_NO_ANALYTICS\fR
|
||||||
If set, Homebrew will not send analytics\. See: \fIhttps://github\.com/Homebrew/brew/blob/master/docs/Analytics\.md#analytics\fR
|
If set, Homebrew will not send analytics\. See: \fIhttp://docs\.brew\.sh/Analytics\.html\fR
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fBHOMEBREW_NO_AUTO_UPDATE\fR
|
\fBHOMEBREW_NO_AUTO_UPDATE\fR
|
||||||
|
Loading…
x
Reference in New Issue
Block a user