Reputation: 9996
There is a command for listing all files in a certain revision:
svn log --summarize -r119977:r119978
M /tradefed/DeathStarService/trunk/CMakeLists.txt
M /tradefed/DeathStarService/trunk/build.sh
...
There is a command for seeing difference for a file in a certain revision:
svn diff trunk/build.sh -r119977:r119978
Is there a command-line to see differences in all files in a certain revision?
Upvotes: 0
Views: 52
Reputation: 1238
Just omit the file specification from the diff command.
svn diff -r119977:r119978
Upvotes: 2