Reputation: 406
I want to see the changes in my repository, but only the chunks that contain comments (in c++ that'd be lines starting by // or enclosed in /**/ )
Upvotes: 1
Views: 188
Reputation: 30662
Subversion does not provide any built-in tool for full-text code search. You should write a script that will process diffs or use tools that provide full-text search capabilities for SVN repositories.
Upvotes: 1