Let's say I have these revisions:
rev 1
introduces bug #1rev 2
possibly introduces bug #2rev 3
possibly introduces bug #2rev 4
possibly introduces bug #2rev 5
fixes bug #1
To verify where bug #2 occured, bug #1 needs to be fixed.
Can the revision where bug #2 first occured be determined during a single git bisect
run, possibly through manually appling the rev 5
patch on each bisect step? Would manually patching interfere a bisect?
Automatically bisect with temporary modifications
in the bisect documentation. – Oshinski