Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaeldimmitt/homebrew-taps
mirrored here: maintained at https://github.com/md-command-line/homebrew-taps
https://github.com/michaeldimmitt/homebrew-taps
homebrew homebrew-tap tap
Last synced: 23 days ago
JSON representation
mirrored here: maintained at https://github.com/md-command-line/homebrew-taps
- Host: GitHub
- URL: https://github.com/michaeldimmitt/homebrew-taps
- Owner: MichaelDimmitt
- Created: 2021-03-18T12:58:29.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-03-28T05:03:39.000Z (over 3 years ago)
- Last Synced: 2023-03-06T11:03:23.653Z (over 1 year ago)
- Topics: homebrew, homebrew-tap, tap
- Language: Ruby
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## Install all the things:
```bash
brew tap michaeldimmitt/taps &&
brew install dir &&
brew install reveal;
```
#### Want more taps? see:
https://github.com/MenkeTechnologies/homebrew-taps### How to quickly update a tap using reveal as an example
```bash
brew edit reveal
# change the url
brew install reveal
# get the latest sha value
# update both in this github project.
brew reinstall reveal;
# check the update with: brew edit reveal
# note: if reveal is not installed on your computer... homebrew has a cask named Reveal and even if you have not installed the app it will show that formula with brew edit reveal.
```## Ohhhhh, so you want to have your own tap of this brew?
https://docs.brew.sh/How-to-Create-and-Maintain-a-Tap
1) If hosted on GitHub, we recommend that the repositoryโs name start with `homebrew-`
2) This repo is named `homebrew-taps` ... causing brew tap `michaeldimmitt/taps` to work!
3) `brew create ` this will make an example formulae!
4) check my formulae to see how it is done ๐ฅ
5) copy that code and paste it into a file for your homebrew repo.
6) my formulae is super simple ... it just installs a script into bin/local making it executable!```bash
# note: any brew formulae is able to be viewed after being downloaded.
# simply type:
brew edit## enjoy ๐
```
other links: (an interesting squashing workflow)
https://github.com/MichaelDimmitt/quick_and_easy_squashing/blob/master/README.md