https://github.com/gromgit/homebrew-notes
Notes on dealing with Homebrew
https://github.com/gromgit/homebrew-notes
Last synced: 7 months ago
JSON representation
Notes on dealing with Homebrew
- Host: GitHub
- URL: https://github.com/gromgit/homebrew-notes
- Owner: gromgit
- License: mit
- Created: 2020-03-09T10:58:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-10T07:43:01.000Z (about 6 years ago)
- Last Synced: 2025-07-09T08:12:08.438Z (10 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# homebrew-notes
These are my personal notes on how to use Homebrew effectively. Perhaps they may be useful to you
# Initial installation
I've added a script, `install_homebrew`, that tries the official install method if possible,
then falls back to the alternative manual method otherwise.
## Making a PR
*Definitely* read https://docs.brew.sh/How-To-Open-a-Homebrew-Pull-Request several times.
## Building a bottle
```sh
# First install without running post-install
brew install --build-bottle
# Make the bottle, recording the necessary details
# ( is for hosting outside Homebrew)
brew bottle --json [--root-url ]
# Then run post-install
brew postinstall
```