

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 3
click for more info
Not enough gems
Cost: 6 gems
1: Config
incomplete
2: Status
incomplete
3: Staging
incomplete
4: Commit
incomplete
5: Half of Git
incomplete
6: Git Log
incomplete
This lesson's interactive features are locked, please to keep using them
The contents.md file has been created, but as we saw, it's untracked. We need to stage it (add it to the "index") with the git add command before committing it later.
Without staging, no files are included in the commit – only the files you explicitly git add will be committed.
Here's the command:
git add <path-to-file OR pattern>
For example:
git add i-use-arch.btw
Run and submit the CLI tests.