feat: update readme regarding module 01 instructions
This commit is contained in:
@@ -24,13 +24,15 @@ This will create a directory called `challenge` with some files that need to be
|
|||||||
|
|
||||||
### Your Task
|
### Your Task
|
||||||
|
|
||||||
1. Navigate into the `challenge` directory
|
1. Navigate into the `challenge` directory: `cd challenge`
|
||||||
2. Initialize a new git repository
|
2. **Initialize a new git repository**: `git init` (this is your first step!)
|
||||||
3. Check the status of your repository
|
3. Check the status of your repository: `git status`
|
||||||
4. Stage the file `welcome.txt`
|
4. Stage the file `welcome.txt`: `git add welcome.txt`
|
||||||
5. Create a commit with the message "Add welcome file"
|
5. Create a commit with the message "Add welcome file": `git commit -m "Add welcome file"`
|
||||||
6. Stage the file `instructions.txt`
|
6. Stage the file `instructions.txt`: `git add instructions.txt`
|
||||||
7. Create a commit with the message "Add instructions"
|
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
|
### Key Concepts
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user