This repository is a demonstration of my previously completed IS 312 HOP_learning assignment, and you can refer to the following course instruction from the original repository. I may have fixed some markdown syntax errors in this README, trivial work 🤣
PREPARATION TO DO HANDS-ON PRACTICE
-
In your local machine, open Terminal (for Mac) or Command Prompt (for Windows), type the following commands to create a directory for this class:
cd Desktop(to change directory to Desktop)mkdir IS312(to create a directory for this course)cd IS312(to change directory to IS312 you just created)git clone <URL>(to download this Github repository to your local machine, replace<URL>with the actual url of your repository)cd <HOP#-GithubUsername>(to change directory to the repository you just downloaded, note that you need to replace<HOP#-GithubUsername>with the actual repository name you just downloaded)
-
Change directory to the corresponding folder of each week. For example: Your work for module 1 should be stored under
Module01folder; your work for module 2 should be stored underModule02, and so on:cd Module01
-
Now, follow the instructions provided in each folder to complete your Hands-on Practice
SUBMIT YOUR WORK
Once you completed the Hands-on Practice, do the following to push your work to GitHub
-
Open the terminal from the VSCode by hitting the
control+~(orctrl+j) key, make sure you are in the right path, for example:/Desktop/IS312/IS312-********/Module01 -
Type the following command to upload your work:
git add .(to copy all changes you have made)git commit -m "Submission for Module 1 - Your name"(To add a message to your submission)git push origin main(to upload your work to Github)