vote up 0 vote down star
1

Hello All,

How I export/get all the files belonging to a revision ?

For example:
On revision 5434 if we have commited 5 files, How do i get all the 5 files on the specified revision ?

Some thing like svn export with revision number, but I only want the files that I commited on that revision.

Any help would be much appricieated.

Thanks & Regards Varma

Edit:

Duplicate of http://stackoverflow.com/questions/971188/subversion-check-out-only-those-files-affected-during-a-specific-commit

flag
6  
Possible duplicate of stackoverflow.com/questions/971188/… – Milen A. Radev Jun 10 at 12:55
Yep, same question. Guess this can be closed. – sleske Jun 10 at 13:13
This question is a specific variant of: stackoverflow.com/questions/427781/… – bendin Jun 16 at 10:17

1 Answer

vote up 0 vote down check

Yeap,

Ended with writing a small PHP script to get the files and export it.

Got the file list with the command
svn log /home/raja/coderepo/ -qv -r12423 | awk '/\//{print $2}'

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.