��--- title: Instructions to submit homework --- 1. Inside the folder that is linked to your GitHub repo github.comYourRepoName/STAT4160
on your device (local computer or Colab), create a folder named homework
if it doesn’t already exist. You should have this folder already if cloned my repository. 2. Save your homework files in the homework
folder. Name it as homework1_<your_init>.ipynb
or homework1.qmd
, or homework1.png
depending on the type of assignment. If you need to submit multiple files for one assignment, first create a subfolder (e.g. homework_1_yw
) by mkdir homework/homework_1_yw
. Then save your multiple files in this subfolder. 3. Checkout a new branch for your homework submission. You can name it something like bash git checkout -b homework1/<your_init>
4. Add your homework files to the new branch:
bash git add homework/homework1_<your_init>.ipynb # this is the path to the homework file or folder
5. Commit your changes:
bash git commit -m "Submit homework1 from <your_init>"
6. Push your changes to the remote repository:
bash git push -u origin homework1/<your_init>
7. Create a pull request (PR) on GitHub to merge your homework branch into the main branch. 8. In the pull request description, include any specific instructions or notes for the reviewer.