Re: Call svn cat for all files modified or added in a given revision

2012-03-26 Thread OBones
Andy Levy wrote: svn log --verbose -rX will give you a list of all paths touched in revision X. You'll need to do some parsing to extract just the paths vs. the other log data. If you're handy with XML, you can use svn log --verbose --xml -rX and then use XPath to extract just the paths. I ha

Re: Call svn cat for all files modified or added in a given revision

2012-03-22 Thread OBones
Andy Levy wrote: On Wed, Mar 21, 2012 at 08:02, OBones wrote: Andy Levy wrote: On Tue, Mar 20, 2012 at 10:39, OBoneswrote: Hello all, Using svn cat I can see the state of a file at a given revision. As it turns out, I have had in the past some files that were commit with inconsistent lin

Re: Call svn cat for all files modified or added in a given revision

2012-03-21 Thread Andy Levy
On Wed, Mar 21, 2012 at 08:02, OBones wrote: > Andy Levy wrote: >> >> On Tue, Mar 20, 2012 at 10:39, OBones  wrote: >>> >>> Hello all, >>> >>> Using svn cat I can see the state of a file at a given revision. >>> As it turns out, I have had in the past some files that were commit with >>> inconsist

Re: Call svn cat for all files modified or added in a given revision

2012-03-21 Thread OBones
Andy Levy wrote: On Tue, Mar 20, 2012 at 10:39, OBones wrote: Hello all, Using svn cat I can see the state of a file at a given revision. As it turns out, I have had in the past some files that were commit with inconsistent line endings and that are making analysis tools stop because of this.

Re: Call svn cat for all files modified or added in a given revision

2012-03-20 Thread Andy Levy
On Tue, Mar 20, 2012 at 10:39, OBones wrote: > Hello all, > > Using svn cat I can see the state of a file at a given revision. > As it turns out, I have had in the past some files that were commit with > inconsistent line endings and that are making analysis tools stop because of > this. Can you