December 12 2016 Multisection: When You Need to Bisect More Than Once Back

git bisect

        $ man git-bisect
        $ git bisect start HEAD HEAD~200     # HEAD is bad, 200th previous commit is good
        $ git bisect run make test           # "make test" builds and tests
        $ git bisect reset                   # quit the bisect session


Home Last TOC Copyright © 2016 James E Keenan Back Next