https://bugs.winehq.org/show_bug.cgi?id=41107
--- Comment #11 from Wylda wylda@volny.cz --- Thanks, this exactly what i wished ;) But could you help me bit more, please?
... to find the guilty patch using bisect without going back in history. Just check out wine git
Do you mean:
wine-git$ git checkout -f wine-1.9.16 staging-git$ git checkout -f v1.9.16
wine-git$ /path/to/wine-staging/patches/patchinstall.sh --backend=git --force-autoconf --all
This will add all patches as separate commits with their corresponding autogenerated changes. Then just do:
git bisect start git bisect good origin git bisect bad
And then continue bisecting as usual. You might have to re-run ./configure if compilation aborts because of Makefile changes.
Above git bisect commands should be in "wine-git" dir or "staging-git" dir?
Why plain "origin" (git bisect good origin) instead of version?