Thanks for your reply. I have used the output of :
svn diff --summarize Here I get. https:// -----------/svn/demo/Integration WorkSpace/Database/S_1.txt https://-----------/svn/demo/Integration WorkSpace/Dlls/test2.txt when I put this output in command as: svn export -r 2 " https://-----------/svn/demo/Integration WorkSpace/Dlls/test2.txt" c:\destination path Output: svn: Can't move ' c:\destination path ': Access is denied. How would I use this output of 'svn diff --summarize' for 'export'. I think I am missing something. Cheers -----Original Message----- From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] Sent: Thursday, October 13, 2011 3:52 AM To: Waseem Shahzad Cc: users@subversion.apache.org Subject: Re: Export files from Tortoise SVN 2011/10/13 Waseem Shahzad <waseem.shah...@curemd.com>: > Hi > > I am trying to get the only changed files in the revision. I am > using this .. > > > > svn export -r 2 "svnrepository" destination > > > > This command Is getting all the files including changed files. > > Below concept is good for me but it doesn't export. > > > > svn log -vr 2 svnrepository > > > > Pls guide me how would I make this command usable to get the Only changed - > modified and added - files in particular revision. svn log -v -r like you are doing above, or svn diff --summarize Filter its output and feed it to "svn cat", or may be to svn export. Best regards, Konstantin Kolinko