Beginner Git & Version Control
Q32 / 100

What is the meaning of "untracked" files in "git status" output?

Correct! Well done.

Incorrect.

The correct answer is B) New files in the working directory that Git has not yet been told to track (have never been staged/committed)

B

Correct Answer

New files in the working directory that Git has not yet been told to track (have never been staged/committed)

Explanation

Untracked files exist in the working directory but Git is not yet monitoring changes to them; running "git add" begins tracking them.

Progress
32/100