One of the commits on master
introduced a bad file.
Find the commit and revert it using bisect.
- Run
. setup.sh
(or.\setup.ps1
in PowerShell)
git bisect start
git bisect bad
git bisect good <commit-ish>
git bisect good
git bisect reset
git bisect run <cmd>
test ! -f badfile
(orgci . badfile
in PowerShell) to test the existence of a filetest ! -f badfile;echo $?
to output the result of the test to the console