Mohamed Saligh
Mohamed Saligh

Reputation: 12339

How to get only updated files from svn?

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

Upvotes: 0

Views: 195

Answers (2)

Lazy Badger
Lazy Badger

Reputation: 97270

CLI-version

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

Upvotes: 2

Leonel Sanches da Silva
Leonel Sanches da Silva

Reputation: 7220

  • 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

Upvotes: 1

Related Questions