How do I use git bisect?
The idea behind git bisect is to perform a binary search in the history to find a particular regression. Imagine that you have the following development history: … — 0 — 1 — 2 — 3 — 4* — 5 — current You know that your program is not working properly at the current revision, … Read more