Hi,
is it a possible to get the files changed from previous build to the next build and who did the changes.
Hi,
is it a possible to get the files changed from previous build to the next build and who did the changes.
If you know the revision numbers of the two builds you can use svn log
:
svn log -r <previous rev>:<next rev>
For example:
svn log -r 1066:1105
To discover the changes, use
svn blame <filename>
This will show you who is responsible for which line of code - if you want a specific version, use
svn blame <filename>:<rev>
svn diff --summarize -c 123
shows the files that where changed in the changeset 123, i.e. in the commit that turned revision 122 into revision 123.
svn log -c 123
shows you who made that commit. You can replace
-c 123
by
-r COMMITTED:HEAD
to get the last change (this assumes your working copy is up to date; call svn up
to make sure).