Beginner
Git & Version Control
Q40 / 100
What does it mean when "git status" reports a file as "modified"?
Correct! Well done.
Incorrect.
The correct answer is B) The file is tracked by Git, and its content in the working directory differs from the version in the index or last commit
B
Correct Answer
The file is tracked by Git, and its content in the working directory differs from the version in the index or last commit
Explanation
A "modified" status means Git is already tracking the file, but you've made changes since the last time it was staged or committed; running "git add" stages those changes.
Progress
40/100