I added a homebrew repository a long time ago with brew tap
. I forgot the URL I used. brew tap
doesn't list the URL:
$ brew tap
homebrew/core
shyiko/ktlint
foo/bar
How do I find the URL?
Here's how you set up a new Tap: Create a new GitHub repo. Add directories called Formula and Casks . Into each of these you add Ruby files which contain all the information Brew needs to download, authenticate and install the Tap's apps.
Taps (Third-Party Repositories) The brew tap command adds more repositories to the list of formulae that Homebrew tracks, updates, and installs from. By default, tap assumes that the repositories come from GitHub, but the command isn't limited to any one location.
brew untap user/repo [user/repo user/repo ...] removes the given taps. The repositories are deleted and brew will no longer be aware of their formulae. brew untap can handle multiple removals at once.
Homebrew-Cask extends Homebrew and allows you to install large binary files via a command-line tool. You can for example install applications like Google Chrome, Dropbox, VLC and Spectacle.
You can get the repository url by running:
brew tap-info foo/bar
If you have a tap user/repo
, which is not on github, you can get the associated URL in two steps:
1) Go to the location of the tap.
cd /usr/local/Homebrew/Library/Taps/[user]/homebrew-[repo]
2) Use git to check the remote repository
git remote -v
If the tap is on github you can simply make a substitution to get the URL:
https://github.com/[user]/homebrew-[repo]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With