diff --git a/content/classwork/01_cw_hello_world.md b/content/classwork/01_cw_hello_world.md index 8b13789..795df8c 100644 --- a/content/classwork/01_cw_hello_world.md +++ b/content/classwork/01_cw_hello_world.md @@ -1 +1,16 @@ +--- +title: CW 01 : Hello World and GitHub +due_date: 2024-09-09 +--- + +The objective of this exercise is to create a txt file, add it, commit and push to a remote repository. + +1. In your local machine, go to the folder where your assignments repo was cloned ...../CS_Foundations/cs_foundations-assignments-YourUsername/ and create a folder classwork. +2. Create a folder 01_hello_world inside the classroom folder. +3. Write a txt file HelloWorld.txt that prints the message "Hello World!". +4. Run `git status`. What does it show? +5. Add the new file to the repo +6. Run `git status` again. What does it show this time? +7. Commit and push the file to your repo. +8. Go to GitHub, HelloWorld.txt should be there.