Morten blog

`git bisect run` is very good

I've used git bisect for a long time but never really took the time to learn git bisect run. It turns out to be super simple and extremely useful.

You just start the bisect

git bisect start <bad commit> <good commit>

and tell it which command to run to test the commits

git bisect run bash -c '<make, or whatever>'

Then you can go have a coffee while the computer does your job.

Thoughts? Leave a comment