git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| ##Some points to mention... | |
| ## | |
| ##The model knows nothing about the view or the controller. | |
| ##The view knows nothing about the controller or the model. | |
| ##The controller understands both the model and the view. | |
| ## | |
| ##The model uses observables, essentially when important data is changed, | |
| ##any interested listener gets notified through a callback mechanism. | |
| ## | |
| ##The following opens up two windows, one that reports how much money you |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream