Could I check in SVN, when a specific method is changed?
I found out a metho开发者_Python百科d which is changed some time back and I need to find out who changed that method. Tried to check the log on the file, but last 20 revisions or so not touched this method. SVN is very slow getting revision logs and comparing them (Perforce used to be fast with these operations).
Is there a way to achieve this?
svn blame
(also known as "annotate") will show a line-by-line breakdown of who last changed each line and at what revision. However, I don't know where that's performed - if it's slow at getting revision logs for you, blame
may take too long. Worth a try though.
精彩评论