13 Jun
2016
13 Jun
'16
3:29 p.m.
So why is it so hard to describe how to do bisection? Despite the responses on this BB trying to answer my question, I still don't have a clear understanding of how to do it. With svn it is just "svn update -r”.
I think there is a misunderstanding here. “svn update -r REV” is just “git checkout HASH”. By bisection, I understand “git bisect”, which is a way to automate finding a faulty commit. You don’t need to use that if you find it’s too complicated. Actually, "git bisect" is just some scripting on the top of "git checkout", I think.