views:

82

answers:

1

I'm looking for a way to search subversion to find any file where a certain server name is referenced. Is there fairly straight forward way to create a list or report based on a value in the files?

+2  A: 

svn cat will print the contents of a file in a Subversion repository; you can pipe the output of this command through grep or find or some other tool that searches files for strings.

Michael Hackner