Rather than using branches to indicate the different "steps" of creating Grumblr, we're using commits. If you check out the commits of the solution branch, you'll see what we mean.
The different steps can be downloaded via Releases. These are usually used to release different versions of an app, which is why each one has a version number: 1.0.0, 1.0.1, and so on.
The starter code for the first Angular class is version 1.0.0. The solution code for the first class is 1.0.1. The solution code for the third class is 3.0.1.
You can download a release by clicking its Source code (zip)
link. (If it doesn't expand automatically into a folder, double-click it.) The advantage of this is that each release will be downloaded into its own folder with a name like grumblr_angular_2.0.1
.
Instead of juggling a bunch of branches in one repo, you'll instead just be able to go from folder to folder.
Note: The zip files do not include a .git
folder, like git clone
gives you. So if you do want to use Git inside one of the folders, you'll need to $ git init
inside it.
Continue working on your local repository from in-class, completing edit, update, and delete functionality. No deliverable tonight.
You will have forked and cloned this repository in class. Complete show and edit functionality with routes for show, new, and edit. Submit an issue with a link to your code on this repo to turn in.
$ git checkout -b ui-router 1.0.0
$ git checkout ui-router-solution
$ git checkout -b custom-directives 2.0.0
$ git checkout -b custom-directives-solution 2.0.1
$ git checkout -b custom-directives-with-auth 3.0.0
$ git checkout -b custom-directives-with-auth-solution 3.0.1