Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 463 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 463 Bytes

bisect-demo

Repository to demonstrate the tool git bisect

This is for demonstrating the tool git bisect

Usage:

  • git bisect start to start bisect session
  • git bisect bad to indicate, that the bug is still present
  • git bisect good daf804357 to indicate, that the bug is not present on inital commit
  • Proceed to use bad and good until bug is found
  • git bisect reset to exit the current bisect session.