Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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