Displaying a list of files that have changed since last changeset in SVN
This has been long ago, but to precisely answer the original question, i.e. "is there a way to get a list of files that were modified between changesets in TortoiseSVN", here is a way to achieve that:
- On top-level folder, right-click and TortoiseSVN --> Show log.
- From the list of revisions, select all back to, but not including, the last revision that you want to compare against
- Right-click on the selections and chose Compare revisions
- Now you're looking at a list of all modified files since that particular revision
Original article: http://www.andornot.com/blog/post/How-to-export-only-files-modified-since-revision-x-with-TortoiseSVN.aspx
Usually svn
outputs exactly that list when you do an update
.
svn diff
has a --summarize
option, too:
svn diff -rPREV:HEAD --summarize
svn diff -r10374:11128 --summarize
You'll get the idea :-)
With TortoiseSVN: rightclick, pick TortoiseSVN->Show log.
You'll get a list of revisions and can pick any two to compare.