export single file from svn rather than a folder
by Ramya[ Edit ] 2013-10-14 17:55:13
export a single file from svn rather than a folder:
One way of exporting a single file from svn is to use "cat" command,
svn cat http://source-ip/foldername/about.txt > /your destination path/about.txt
sometimes, you may need to get a file from svn, instead of exporting full repository...in that case, you can use the above command to transfer the file content from svn to your destination file...........
then you can make the changes and commit with usual process....