From 165044609f277a5de0784ca3d84183901b0373d8 Mon Sep 17 00:00:00 2001 From: Bjarke Sporring Date: Fri, 19 Dec 2025 11:27:57 +0100 Subject: [PATCH] feat: update readme regarding module 01 instructions --- module-01-basics/README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/module-01-basics/README.md b/module-01-basics/README.md index e7bb798..6c950d4 100644 --- a/module-01-basics/README.md +++ b/module-01-basics/README.md @@ -24,13 +24,15 @@ This will create a directory called `challenge` with some files that need to be ### Your Task -1. Navigate into the `challenge` directory -2. Initialize a new git repository -3. Check the status of your repository -4. Stage the file `welcome.txt` -5. Create a commit with the message "Add welcome file" -6. Stage the file `instructions.txt` -7. Create a commit with the message "Add instructions" +1. Navigate into the `challenge` directory: `cd challenge` +2. **Initialize a new git repository**: `git init` (this is your first step!) +3. Check the status of your repository: `git status` +4. Stage the file `welcome.txt`: `git add welcome.txt` +5. Create a commit with the message "Add welcome file": `git commit -m "Add welcome file"` +6. Stage the file `instructions.txt`: `git add instructions.txt` +7. Create a commit with the message "Add instructions": `git commit -m "Add instructions"` + +**Note**: The challenge directory is NOT a git repository until you run `git init`. This is intentional - you're learning to start from scratch! ### Key Concepts