Problem Statement
What does `git clean` do and why is it dangerous?
Explanation
`git clean` removes untracked files/dirs from the working tree. It permanently deletes files not tracked by Git, so use `-n` (dry-run) first to preview.
Practice Sets
This question appears in the following practice sets: