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 β†’\rightarrow Manage Access β†’\rightarrowInvite 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?