Created
September 16, 2009 12:49
-
-
Save lukeredpath/188021 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# could we track github forks as "sources"? | |
$ brew track [github user] | |
$ brew track lukeredpath | |
# refresh sources if we're caching? | |
$ brew refresh [github user] (default: --all) | |
# listing formulae | |
$ brew list --local (default: implicit --local) | |
$ brew list --all (from all sources) | |
$ brew list --remote lukeredpath (just from my repo) | |
# installing formulae | |
$ brew install imagemagick (implicit --local, e.g. /usr/local/Library/Formulae) | |
$ brew install imagemagick --remote lukeredpath | |
# alternative syntax? | |
$ brew install lukeredpath-imagemagick (ala github gems) | |
# what about publishing? | |
$ brew publish [my formulae] | |
# just throwing some ideas out there... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment