Individual exercises to start the day off right.
We will release an exercise at 8:50 am daily. You have until 9:15 am to complete the assignment.
There will be 10 minutes at the end to wrap up. The format for this will vary.
Clone this repository.
git clone [email protected]:JumpstartLab/warmup-exercises.git
When the assignment is released, git pull
to get the assignment.
A solution will sometimes be released at 9:15. In order to be able to pull those changes from the master, you will need to either commit or stash your changes:
git commit -m "Complete assignment X"
git pull
or:
git stash save "Assignment X"
git pull
git stash pop