Utiliser une recherche binaire pour trouver le commit qui a introduit un bug. Git saute automatiquement d'avant en arrière dans le graphe de commit pour isoler le commit défectueux. Plus d'informations : https://git-scm.com/docs/git-bisect.
git bisect start {{bad_commit}} {{good_commit}}
git bisect
selectionné, le marquer comme "bad" ou "good" apres l'avoir testé pour le probléme :git bisect {{good|bad}}
git bisect
pointe vers le mauvais commit, terminer la dissection et retourner a la branche précedante :git bisect reset
git bisect skip