homebrew-core/CONTRIBUTING.md
Chelsea Voss 26825c7b2d
Update CONTRIBUTING.md
Suggest `brew install --build-from-source` instead of `brew install` for
testing formulas.

Closes #6420.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
2016-11-06 06:44:44 -08:00

2.5 KiB

Contributing to Homebrew

First time contributing to Homebrew? Read our Code of Conduct.

Report a bug

Submit a 1.2.3 version upgrade for the foo formula

Add a new formula for foo version 2.3.4 from $URL

  • read the Formula Cookbook or: brew create $URL and make edits
  • brew install --build-from-source foo
  • brew audit --new-formula foo
  • git commit with message formatted foo 2.3.4 (new formula)
  • open a pull request and fix any failing tests

Contribute a fix to the foo formula

  • brew edit foo and make edits
  • leave the bottle as-is
  • brew uninstall --force foo, brew install --build-from-source foo, brew test foo, and brew audit --strict foo
  • git commit with message formatted foo: fix <insert details>
  • open a pull request and fix any failing tests

Thanks!