git bisect

https://robots.thoughtbot.com/git-bisect

# get it ready
git bisect start
git bisect good c09c728
git bisect bad e6a0692

# give git a command to run against each commit
git bisect run command.sh
Back