Intermediate
Git & Version Control
Q57 / 100
What is the purpose of "git bisect"?
Correct! Well done.
Incorrect.
The correct answer is B) It uses binary search through commit history to help identify which specific commit introduced a bug, by marking commits as "good" or "bad"
B
Correct Answer
It uses binary search through commit history to help identify which specific commit introduced a bug, by marking commits as "good" or "bad"
Explanation
"git bisect start" begins a binary search: you mark known good and bad commits, and Git checks out commits in between, narrowing down the exact commit that introduced a regression.
Progress
57/100