Skip to content
Snippets Groups Projects
Commit e4b4ad53 authored by Joel B Schwartz's avatar Joel B Schwartz Committed by Mike McQuaid
Browse files

Tips-N'-Trick: add a tip to use switch.


I find brew switch very helpful to activate a different version of an
installed formula. This seems worth calling out in the documentation to
elevate awareness.

Closes Homebrew/homebrew#45694.

Signed-off-by: default avatarMike McQuaid <mike@mikemcquaid.com>
parent 7f167963
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,15 @@ This can be useful if a package can't build against the version of something you
And of course, you can simply `brew link $FORMULA` again afterwards!
## Activate a previously installed version of a formula
```sh
brew info $FORMULA
brew switch $FORMULA $VERSION
```
Use `brew info $FORMULA` to check what versions are installed but not currently activated, then `brew switch $FORMULA $VERSION` to activate the desired version. This can be useful if you would like to switch between versions of a formula.
## Install into Homebrew without formulas
```sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment