-
Notifications
You must be signed in to change notification settings - Fork 0
Git and GitHub During the Assignment
Git records versions of your assignment files. GitHub stores your personal repository online so you can back up your work and continue from another configured computer if needed.
GitHub is not the assignment submission system. Submit graded work in D2L Brightspace according to the current Guidelines and Rubric.
Save your .drawio and .pseudo files in VS Code before committing them.
From the repository root, check your changes:
git statusThe top-level README gives the recommended command sequence. A commit records a snapshot in Git; git push sends your commits to your personal GitHub repository.
Use short commit messages that describe the progress you saved, for example:
Complete initial flowchart design
or:
Revise pseudocode branching
The setup command creates your assignment repository as private. Keep graded assignment work private unless the course explicitly directs you to share it.
You create the personal assignment repository once. When you return later, open the existing local folder.
If you move to another computer, clone your existing personal repository instead of creating a new repository from the course template.
Use git status and verify that your latest changes have been committed and pushed. GitHub provides a backup, but the files you select in D2L Brightspace are what your instructor grades.