git bisect is probably one of the most revolutionary parts of git, you can even automatize regression testing with it (if you have a regression test, you can run git bisect script.sh and it will bisect automatically the problem for you). I have used it lately to automate performance testing & regression finding.
git bisect
is probably one of the most revolutionary parts of git, you can even automatize regression testing with it (if you have a regression test, you can rungit bisect script.sh
and it will bisect automatically the problem for you). I have used it lately to automate performance testing & regression finding.