Fork and clone the GridWorld repo.
The code is organized into packages so creating a branch for each Part is not required (but recommended).
If you choose to create a branch for each part, follow these steps:
- Create and checkout a new branch
$ git checkout -b part# - Make commits for significant code changes
- When finished with the entire Part, merge the changes back to
master.$ git checkout master $ git merge part# - It is now safe to delete the
part#branch.$ git branch -d part# - Push changes to github
$ git push
Read instructions for Part 1 in Grid World Student Manual.pdf. You have also have GridWorld Appendices.pdf for quick API reference.
answers.md has been provided for you to write the answers to any questions asked in the Student Manual.
Make commits to this branch as you complete the steps outlined in the activity.
Commit all local changes, then:
$ git push