-
Find the formula for the version you want to install:
- Visit https://github.com/Homebrew/homebrew-core/tree/master/Formula
- Click the file with your formula (e.g. “composer.rb”)
- Click “History” (top right)
- Click the commit hash for the version you want to download
- Click the three dots (top right of diff) and choose “view file”
- Click “Raw” and copy the raw URL from the browser address bar.
For example, composer 1.10.15 lives here: https://github.com/Homebrew/homebrew-core/blob/9e6e6a1ca8551901bff69d329c7fbb9007064134/Formula/composer.rb
This file contains 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
{ | |
"name": "javascript-development-environment", | |
"version": "1.0.0", | |
"description": "JavaScript development environment Pluralsight course by Cory House", | |
"scripts": { | |
}, | |
"author": "Cory House", | |
"license": "MIT", | |
"dependencies": { | |
"whatwg-fetch": "3.6.2" |
Also, check out Advanced Angular Component Patterns on Egghead!
* Titles subject to change
React | Angular |
---|---|
Introducing Advanced React Component Patterns | 00 Introducing Advanced Angular Component Patterns (egghead) |
Build a Toggle Component (source) | 01 Build a Toggle Component (stackblitz) ([egghead](https: |
- http://stackoverflow.com/questions/804115 (
rebase
vsmerge
). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebase
vsmerge
) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
reset
vscheckout
vsrevert
) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse
) - http://stackoverflow.com/questions/292357 (
pull
vsfetch
) - http://stackoverflow.com/questions/39651 (
stash
vsbranch
) - http://stackoverflow.com/questions/8358035 (
reset
vscheckout
vsrevert
)