What is git bisect?
bash
git bisect start
git bisect bad # Current is bad
git bisect good v1.0 # Known good
# Git checks out middle commit
# Test it...
git bisect good # or bad
# Repeat until found
git bisect resetShort Answer
Interview readyPremium
A concise answer to help you respond confidently on this topic during an interview.