I work with a team, and we use Subversion.
In the morning I want to see exactly what was changed since the last build, is there a way to get a list of files that were modified between changesets?
Update Using tortoiseSVN please
The solution here is to either update your working copy or explicitly provide a revision number to svn log by using the --revision ( -r ) option. svn log also takes a --quiet ( -q ) option, which suppresses the body of the log message. When combined with --verbose ( -v ), it gives just the names of the changed files.
You can simply click on one revision, then ctrl-click on the other revision (so the two are selected), then rt-click on either one, do "Compare revisions". This WILL show all changes between those two revisions, including changes made in any intervening revision.
To find information about the history of a file or directory, use the svn log command. svn log will provide you with a record of who made changes to a file or directory, at what revision it changed, the time and date of that revision, and, if it was provided, the log message that accompanied the commit.
If you want more control over the update process, you should use TortoiseSVN → Update to Revision... instead. This allows you to update your working copy to a specific revision, not only to the most recent one.
With TortoiseSVN: rightclick, pick TortoiseSVN->Show log.
You'll get a list of revisions and can pick any two to compare.
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:
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 :-)
The -u
option to svn status
shows which files have been changed on the server since the last time you did an update. This can be useful to get a preview of what's about to change for you, before you do an svn update
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With