Vertaling van "git bisect" in Spaans
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.
The git bisect tool is an incredibly helpful debugging tool used to find which specific commit was the first one to introduce a bug or problem by doing an automatic binary search.
La herramienta git bisect es una herramienta de depuración increíblemente útil, utilizada para encontrar qué commit específico fue el primero en introducir un bug o problema, haciendo una búsqueda binaria automática.
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 no sabes lo que está mal, y ha habido decenas o cientos de commits desde el último estado en el que sabes que funcionó el código, probablemente te recurrirás a git bisect para obtener ayuda.
After 'git bisect' pinpoints the faulty commit, end the bisect session and return to the previous branch
Después de que 'git bisect' determine con precisión el commit defectuoso, termina la sesión de bisecado y vuelve a la rama anterior
For each commit that 'git bisect' selects, mark it as "bad" or "good" after testing it for the issue
Para cada commit que 'git bisect' selecciona, marcarlo como "malo" o "bueno" después de probarlo para el problema
In fact, if you have a script that will exit 0 if the project is good or non-0 if the project is bad, you can fully automate git bisect.
De hecho, si tiene un script que retornará 0 si el proyecto está bien u otro número si el proyecto está mal, puede automatizar completamente git bisect.
In fact, if you have a script that will exit 0 if the project is good or non-0 if the project is bad, you can fully automate git bisect.
De hecho, si se dispone de un script que dé una salida 0 si el proyecto funciona correctamente y distinto de 0 si el proyecto tiene errores, todo este proceso de búsqueda con git bisect se puede automatizar completamente.
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.
Pero no siendo ese el caso, y habiéndose realizado docenas o cientos de confirmaciones de cambio desde el último estado estable conocido, puede ser de utilidad el comando git bisect.
First you run git bisect start to get things going, and then you use git bisect bad to tell the system that the current commit you're on is broken.
Primero ejecuta git bisect start para hacer que las cosas funcionen, y luego usas' git bisect bad' para decirle al sistema que el commit actual está roto.