Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Subversion: How to find the buggy commit?

Tags:

I have a problem that someone introduced a bug but I do not know the subversion commit that introduced this bug. I am looking for something like the nice git feature bisect for svn.

Does anyone know scripts like e.g. python to simulate this feature?

like image 777
schoetbi Avatar asked Mar 03 '10 13:03

schoetbi


1 Answers

svn does not have a bisect-like feature built in. There appears to be a perl script available to do it.

svn-blame does not do the same thing as git-bisect; it is equivalent to git-blame and hg-annotate.

like image 52
jk. Avatar answered Oct 16 '22 20:10

jk.