

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
We've been saying "worktree" all throughout this course but I've been misusing it... I am sorry :(
I've been saying "worktree" when I meant "main worktree", which is more precise because you can have more than one working tree.
A worktree (or "working tree" or "working directory") is just the directory on your filesystem where the code you're tracking with Git lives. Usually, it's just the root of your Git repo (where the .git directory is). It contains:
Git has the git worktree command that allows us to work with worktrees. The first subcommand we'll worry about is simple:
git worktree list
It lists all the worktrees you created.
List all your worktrees.
Copy/paste the output into the textbox and submit.
Become a member to view checks