Question: After starting to work on a new feature and creating new files in the working directory related to it, the customer determined the feature was no longer required. What command can be used to remove the untracked files from the working directory ?

  1. `git clean -f`
  2. `git rm .`
  3. `git reset HEAD`
  4. `git checkout .`

Answer: The correct answer of the above question is Option A:`git clean -f`