Read more

Automated "git bisect" will make your day

Arne Hartherz
July 30, 2013Software engineer at makandra GmbH

So you're hunting down a regression (or just a bug) and want to use git bisect to find out when it was introduced? Smart kid.
If you have a shell command ready to reveal if your current state is good or bad, you can have git do most of the work for you.

Illustration UI/UX Design

UI/UX Design by makandra brand

We make sure that your target audience has the best possible experience with your digital product. You get:

  • Design tailored to your audience
  • Proven processes customized to your needs
  • An expert team of experienced designers
Read more Show archive.org snapshot

Using git bisect run <your command> you can tell git that your command will reveal the issue; git on the other hand will use the return value of that call to decide if the state is good or bad.

  1. First, start bisecting

     git bisect start
    
  2. Then tell git which revisions are good and which are bad. You need to manually run your command for this, or just know which ones work and don't work.

    git bisect bad
    git bisect good abcdef1234
    
  3. Now tell git what to do

    git bisect run bundle exec cucumber features/my.feature:42
    
  4. Wait for the results to come in: Git will bisect until it knows which commit was the first bad one.

  5. Finish bisect

    git bisect reset
    

For more information, see the original "git bisect" card.

Important

Mind that your command needs to work across all revisions that you will be bisecting. If you're referencing a test file that's under version control, make sure you always run the correct test; copying the file to a location outside of your repository might be a viable solution to keep the line number steady while you time-travel between commits.

Posted by Arne Hartherz to makandra dev (2013-07-30 15:29)