Create the following directory structure under .bak/bisect/3364/
with the file from this gist:
.bak/bisect/3364/
├── openapi-simple.json
├── script.sh
└── templates
└── openapi-yaml
└── openapi.mustache
Run the bisection script (taken from git-bisect example):
git bisect start HEAD v1.2 -- # HEAD is bad, v1.2 is good
git bisect run make # "make" builds the app
git bisect reset # quit the bisect session
Example:
git bisect start HEAD 01f991a034 -- # HEAD is bad, 01f991a034 is good
git bisect run .bak/bisect/3364/script.sh # evaluates all commits using binary search to find first "bad" commit
git bisect reset