Vertaling van "git bisect" in Frans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
At every step of the binary search, we must tell git bisect if the issue still persists.
Binary search illustration À chaque étape de la recherche binaire, nous devons dire à git bisect si le problème persiste toujours.
The use of git bisect allows us to rapidly debug by isolating a bad commit with a binary search.
L'utilisation de git bisect permet de débugger rapidement, en isolant un commit erroné de manière dichotomique.
Git takes away the boredom of testing our commits one by one with git bisect.
Git nous épargne l'ennui de tester tous nos commits un par un avec git bisect.
If you don't know what is breaking, and there have been dozens or hundreds of commits since the last state where you know the code worked, you'll likely turn to git bisect for help.
Si vous ne savez pas ce qui a cassé le code, il peut y avoir des douzaines, voire des centaines de commits depuis le dernier état où votre code fonctionnait et vous aimeriez certainement exécuter git bisect pour vous aider.
After 'git bisect' pinpoints the faulty commit, end the bisect session and return to the previous branch
Après que 'git bisect' pointe vers le mauvais commit, terminer la dissection et retourner à la branche précédente
git bisect bad: this allows us to say that the bug still exists on the commit we're on.
git bisect bad: cela permet de spécifier que le commit en question présente toujours le bug. Débuggons !
For each commit that 'git bisect' selects, mark it as "bad" or "good" after testing it for the issue
Pour chaque 'git bisect's électionné, le marquer comme "mauvais" ('bad') ou "bon" ('good') après l'avoir testé pour le problème
Narrow down to a bad commit with git bisect
Une Réponse à "Identifier l'origine d'une régression avec git bisect"
git bisect reset We're now where we began, but we have found the evil commit that tormented the whole team, all of this quite rapidly.
Nous sommes maintenant au point de départ, mais nous avons trouvé le méchant commit qui a tourmenté toute l'équipe, et cela dans un temps plutôt rapide.