Reputation: 3063
svn diff -r version_1:version_2 in SVN, we can diff log, like above,but it show a lot of change,too detail for me . what I need just to diff the version_1 and version_2, who's the new add file. is someone know?
Upvotes: 0
Views: 218
Reputation: 41316
svn diff -r version1:version2 --summarize
That will give you a list of changed files, similar to svn status
. Just take the ones with A
.
Upvotes: 1