How do I search within an SVN repository for a change in a file type?

2

How can I do a search for all changes made to a file type (in my case * .js) in a revision range.

Better explained:

I have a client saying that after an uptime in the software a feature has stopped.

All code is in an SVN repository. Soon between the old and the new version, something was done improperly. I have the old revision and the new ex: rev1900 ~ rev2100, now what I need is to do a search within that interval for any files of type * .js that have changed.

    
asked by anonymous 09.04.2014 / 15:05

2 answers

0

Using Tortoise SVN right click on the folder of your project and select the show log option, in the log window type .js in the search field above, select the show range option of the show button below and fill in the revision range you want to search.

    
09.04.2014 / 16:40
0

I use TortoiseSVN which makes this search a lot easier ...

Just right-click the folder containing your .js and select TortoiseSVN > Show Log and filter through the revision strip.

It will show you all iterations by date, history, etc.

TortoiseSVN

    
09.04.2014 / 16:12