Re: Determining file(s) modified in a changeset

2010-04-15 Thread Les Mikesell
On 4/15/2010 4:09 PM, David Bartmess wrote: On 4/15/2010 2:17 PM, Bob Archer wrote: I need to modify a script that was used with CVS that basically got a list of the files that changed with a specific tag, and acted upon them. Now we're moving to Subversion, and I need a way to get a list of

Re: Determining file(s) modified in a changeset

2010-04-15 Thread Daniel Shahaf
David Bartmess wrote on Thu, 15 Apr 2010 at 15:09 -0600: Yep, I found a one-liner to do this.. svn log -q -v -r rev url | sed -e s/^ .* // | egrep -v ^r[0-9]*|Changed Paths:|- Have you tried it on revisions that contain copies or moves? (Aside from the parenthetical copy-from path/rev,

Re: Determining file(s) modified in a changeset

2010-04-15 Thread David Weintraub
On Thu, Apr 15, 2010 at 3:42 PM, David Bartmess dingod...@edingo.net wrote: I need to modify a script that was used with CVS that basically got a list of the files that changed with a specific tag, and acted upon them. Now we're moving to Subversion, and I need a way to get a list of files