http://bugs.winehq.org/show_bug.cgi?id=28491
--- Comment #15 from Henri Verbeet hverbeet@gmail.com 2012-01-06 11:32:30 CST --- Well in principle you could probably do something like the following:
git branch bisect ec04f80 git checkout -b base 5de0203 git cherry-pick ec04f80 git checkout bisect git rebase base git branch -D base
and then bisect between HEAD and 5de0203. It's a bit more complicated though, and your commit ids won't match anymore, so after you're done with bisecting you'd then have to find the corresponding commit again in the original history.