Llopeth
Llopeth

Reputation: 406

How to show SVN diffs matching a regex pattern

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

Answers (1)

bahrep
bahrep

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

Related Questions