First of all, install Homebrew itself.
As the tap is a private Git repo, you need to generate a GitHub token
with repo
scope and then add this token to your ~/.netrc
file like this:
machine github.com
login <your GitHub user>
password <your GitHub token>
Now you can add the tap to your system:
brew tap user/repo
Afterwards, you can finally install tools provided by the tap:
Install the current version of tool XYZ:
brew install XYZ
Install the latest version of tool XYZ:
brew rm XYZ; brew install --HEAD XYZ
Any idea how to handle taps that reference private urls? My formula has
https://github.com/iGaskin/homebrew-tools/releases/download/v0.0.1/igaskin-0.0.1.tar.gz
in the url field, which can only be accessed via the private rep.