git bisect with additional patch -
let's have these revisions:
rev 1introduces bug #1rev 2possibly introduces bug #2rev 3possibly introduces bug #2rev 4possibly introduces bug #2rev 5fixes bug #1
to verify bug #2 occured, bug #1 needs fixed.
can revision bug #2 first occured determined during single git bisect run, possibly through manually appling rev 5 patch on each bisect step? manually patching interfere bisect?
after reading docs, might work (per bisect step):
git cherry-pick [patch-rev] git reset --hard git bisect [good/bad]
Comments
Post a Comment