Skip to content

Instantly share code, notes, and snippets.

@pgreze
Created May 11, 2019 05:30
Show Gist options
  • Save pgreze/c86d92b7ac02afdef4ddbd4a21d3adad to your computer and use it in GitHub Desktop.
Save pgreze/c86d92b7ac02afdef4ddbd4a21d3adad to your computer and use it in GitHub Desktop.
Git Bisect How To

By hand

https://www.metaltoad.com/blog/beginners-guide-git-bisect-process-elimination

(1d0cd2c65) git bisect start
(1d0cd2c65) git bisect good 1d0cd2c65
(1d0cd2c65) git bisect bad ef33d3b4b
Bisecting: 492 revisions left to test after this (roughly 9 steps)
[bb7505a5fd2da7284f8dcc1a423bbfcc20165ce8] [Nazca] fix tutorial text resource (#1105)
(bb7505a5f) gw app.sample:dependencies # Check if it's ok
(bb7505a5f) git bisect bad
[9c7c3ca71ce16fa4da64ec7a796066a8a05aa015] Next commit
(9c7c3ca71) ...

Automatically

https://www.metaltoad.com/blog/mechanizing-git-bisect-bug-hunting-lazy

$ git bisect start HEAD 12fcd5589 # start from GOOD -> BAD
$ git bisect run gw app.sample:dependencies
...
1 actionable task: 1 executed
9c7c3ca71ce16fa4da64ec7a796066a8a05aa015 is the first bad commit
commit 9c7c3ca71ce16fa4da64ec7a796066a8a05aa015
Author: Anthony Beylerian <[email protected]>
Date:   Tue Dec 18 13:37:01 2018 +0900

    :elephant: :fire: configure on demand optimizes gradle (#824)

:100644 100644 4393be5d663a902890d4706f0a9b9251c58f3df7 3b36885e82b556c8eab9218b9126bf1888c1a8ad M	gradle.properties
bisect run success
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment