Kody
Kody

Reputation: 1244

SVN - Find changed files with certain name within a certain period

I'm struggeling to find a svn command that lists all modified files that contains a certain name (e.g. all panels: *panel*.java) within a certain period (e.g. from 12/01/2015 to 12/31/2015).

Any suggestions?

Upvotes: 1

Views: 30

Answers (1)

Patrick Quirk
Patrick Quirk

Reputation: 23757

To find all modified files that have a certain name and were modified in a certain date range, use these parameters to the svn log subcommand:

svn log -r {2015-12-01}:{2015-12-31} -v --search *panel*.java

The -r (revision range) argument can take dates in curly braces, and the --search argument will match file names, but only if -v (verbose) is passed.

Upvotes: 1

Related Questions