Finding a bug when you have no idea where to start
TL;DR
Start a sessiongit bisect start
Set the bad commit
Either the current commit you're checked out has the bug
git bisect bad
or a specific commit has the bug, for example, dcf12e8
git bisect bad dcf12e8
Set the good commit (e.g. eff13d3 doesn...
erikmedina.dev4 min read