Reputation: 1259
Using TortoiseSVN I'd like to get only files that have changed (new or have been updated) since a particular revision. I'd like to export the latest version of these files to a temp directory. Is this possible?
Upvotes: 2
Views: 845
Reputation: 23757
You can also get a jump start by performing steps 1 and 2 with this command instead (replace the start revision and path):
tortoiseproc.exe /command:log /startrev:1234 /endrev:HEAD /path:C:\your\path\here
Upvotes: 2