We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Staging

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

Assignment

Run and submit the CLI tests.