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
No active XP Potion
Accept a Quest
Login to submit answers
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 | pattern>
For example:
git add i-use-arch.btw
Run and submit the CLI tests.
The Boot.dev CLI requires you to be signed in to submit your solution!
Copy/paste one of the following commands into your terminal:
Run
bootdev run 10bf6614-7c0e-4710-9c84-4fee200d63e4
Submit
bootdev run 10bf6614-7c0e-4710-9c84-4fee200d63e4 -s
Run the CLI commands to test your solution.
Using the Bootdev CLI
The Bootdev CLI is the only way to submit your solution for this type of lesson. We need to be able to run commands in your environment to verify your solution.
You can install it here. It's a Go program hosted on GitHub, so you'll need Go installed as well. Instructions are on the GitHub page.