Description : Utilise la recherche binaire pour trouver un commit qui introduit un bug.

Syntaxe : git bisect <subcommande> [<options>]

Sous-commandeDescriptionUtilisation principale
git bisect startDémarre une session de bisectDébut de recherche de bug
git bisect bad [<commit>]Marque un commit comme contenant le bugIndiquer un commit défaillant
git bisect good [<commit>]Marque un commit comme ne contenant pas le bugIndiquer un commit fonctionnel
git bisect resetTermine la session et revient à la branche originaleFin de recherche
git bisect skipIgnore le commit courant (non testable)Passer un commit problématique
git bisect logAffiche le journal de la session bisectSuivi de la recherche
git bisect replay <file>Rejoue une session depuis un fichier de logRépéter une recherche
git bisect run <cmd>Automatise le bisect avec une commande de testRecherche automatisée