git-bisectUtiliser 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 sélectionné, le marquer comme "mauvais" (bad) ou "bon" (good) après l'avoir testé pour le problème :git bisect {{good|bad}}
git bisect pointe vers le mauvais commit, terminer la dissection et retourner à la branche précédente :git bisect reset
git bisect skip