GitHub Instructions
Work Submission
In this course, you will be using https://github.com/ to submit your code, your repository should be private, make sure to add me as a contributor so I can check your work, you will find me on Github under this email: phil@insufficient-light.com
, you will be asked to submit a link to your repository on CANVAS.
To add a contributor you need to go to settings Manage Access Invite a collaborator
your repository should be called:
{your first name}_{your last name}_CISC349
The repository folder structure should look like this:
John_Smith_CISC349/
ββ exercises/
β ββ exercises_00
β ββ exercises_01
β ββ exercises_02
β ββ exercises_ ...
β ββ exercises_n
ββ projects/
β ββ project_01
β ββ project_02
β ββ project_03
β ββ project_04
ββ assignments/
β ββ assignment_01
β ββ assignment_02
β ββ assignment_03
β ββ assignment_04
ββ final_project
β ββ exercises_00 ( put any java code for testing)
you will need to use 4 simple commands:
clone your repository
> git clone {link}
add new files and folder
> git add .
commit your changes
> git commit -m "{message}"
push your changes to Github
> git push
If you add, commit and push your assignment to GitHub after the due date and time posted in CANVAS you will be graded according to the late policy in the syllabus.
in canvas, you need to submit your repository link, you can find the link here:

Last updated
Was this helpful?