Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 892 Bytes

README.md

File metadata and controls

35 lines (30 loc) · 892 Bytes

To submit an assignment:

  1. Update your private repository to get the assignment files:
cd [my_repo_name]
git pull

This will create a new directory, e.g., assignment0.

  1. Do the homework, adding and modifying files in the assignment directory. Commit often!

  2. Before the deadline, push all of your changes to GitHub. E.g.:

cd assignment 0
git add *
git commit -m 'homework completed'
git push
  1. Double-check that you don't have any outstanding changes to commit:
git status
# On branch master
nothing to commit, working directory clean
  1. Double-check that everything works, by cloning your repository into a new directory and executing all tests.
cd 
mkdir tmp
cd tmp
git clone https://github.com/iit-cs429/[your_iit_id]
cd [your_iit_id]/assignments/assignment0
[...run any relevant scripts/tests]