Suppose that I'm going through a git bisect, and after running a git bisect bad
command, my git bisect gets interrupted like so:
$ git bisect bad
Bisecting: 0 revisions left to test after this (roughly 1 step)
error: Your local changes to the following files would be overwritten by checkout:
app/app.iml
Please commit your changes or stash them before you switch branches.
Aborting
I can simply eliminate this file by running:
git checkout -- app/app.iml
which will make my git state clean again.. but I'm not sure how to proceed thereafter (ie to let git bisect continue bisecting).. I believe I've done a git bisect bad
before and it kind of skipped a step or did something i didn't expect it to. I simply want to resume my git bisect operation.. how to do that?
git bisect bad
didn't apply so you just have to run it again. In case you're not sure, take a look atgit bisect log
(git-scm.com/docs/git-bisect#_bisect_log_and_bisect_replay) – Autorotation