-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a987070
commit 066233e
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. | ||
|