0

I need to checkout the files which all updated to particular revision from the SVN. It should not contain any other files. It should checkout the files were affected to a particular revision ID. Also, I need to get the path as in the svn.

I am using Tortoise SVN under subversion control.

Any idea

Zoe
  • 27,060
  • 21
  • 118
  • 148
Mohamed Saligh
  • 12,029
  • 19
  • 65
  • 84
  • Can be something like [this other post](http://stackoverflow.com/questions/971188/subversion-check-out-only-those-files-affected-during-a-specific-commit)? – DreamOfMirrors May 04 '11 at 08:03
  • thanks, I can get the affected files only. But the thing is, I need to get the path as in the svn. :( any idea? – Mohamed Saligh May 04 '11 at 08:51

2 Answers2

2

CLI-version

svn -q -v -r REV or with --xml option additionally

Lazy Badger
  • 94,711
  • 9
  • 78
  • 110
1
  • TortoiseSVN Menu > Show Log
  • Choose revision that has the modified files
  • In files list, order by Action 'modified'
  • Select all the modified files and Ctrl + C the selection
  • Ctrl + V in your favorite text editor, such as Notepad
Leonel Sanches da Silva
  • 6,972
  • 9
  • 46
  • 66