Intermediate
Git & Version Control
Q46 / 100
What is the purpose of "git blame <file>"?
Correct! Well done.
Incorrect.
The correct answer is B) It shows, line by line, which commit and author last modified each line of the file, useful for tracking down when and why a change was made
B
Correct Answer
It shows, line by line, which commit and author last modified each line of the file, useful for tracking down when and why a change was made
Explanation
"git blame" annotates each line of a file with the commit hash, author, and date of its most recent change, helping trace the origin of specific code.
Progress
46/100