bisect 

Send to Kindle
home » snippets » git » bisect



Snippets

# The first arg, HEAD, should be the bad commit and the
# next one is the good commit.
git bisect start HEAD v1.0
git bisect run test-error.sh args

# Can also manually run
git bisect bad <SHA>
# or
git bisect good <SHA>