Repository for students to exchange homework with the instructor.
- Please make sure your version of this repository on GitHub is private and is accessible by only the instructor and you.
- Please do NOT make changes or add files to the Instructor folder, as this is where you will be able to receive new versions of files from the instructor
- Login to GitHub
- On this repository, click the Fork button in the top-right corner of the page

- Verify your fork: - You'll be automatically redirected to your new forked repository - The URL will now show your username instead of the lkoepsel - You'll see an indication that it's "forked from [this repository]" under the repository name
- Clone your fork locally:
git clone https://github.com/student-username/CSIS11_Students.git- Add this repository as upstream:
git remote add upstream https://github.com/lkoepsel/CSIS11_Students.git- To sync with lkoepsel (or class) updates:
git fetch upstream
git merge upstream/main- To update your work on GitHub:
- Be sure to use the week-specific folders in the
studentfolder then commit and push to your fork using VS Code or CLI:
git add -A # to add all of the changes
git commit -m "adding my changes for week 5" # Commit your changes
git push origin # push your change to your repository on GitHub