Background: writing an automated release script to export changed files between versions from SVN and upload to remote server.
The svn log command shows modified fil
I think the only way is to actually parse the diff output for each revistion, though that seems rather brittle, and probably very slow...
This is how a diff entry looks for a file with only changed properties:
c:\test\wc>svn diff -c 3
Property changes on: test.txt
___________________________________________________________________
Added: test
+ test
This is how a diff entry looks for a file with changed contents AND changed properties:
c:\test\wc>svn diff -c 4
Index: test.txt
===================================================================
--- test.txt (revision 3)
+++ test.txt (revision 4)
@@ -1 +1,2 @@
+asdfads
Property changes on: test.txt
___________________________________________________________________
Added: someproperty
+ somepropertyvalue