On Feb 29, 2012, at 11:44, Srikanth Ankem wrote: > I need way of using SVN folder content to non-svn folder. > > I am using SVN for development environment and then moving the data from SVN > to non-snv directory. Non-svn directory is being used for web html-dir. > Currently I am using SVN export option and then rsync to html-dir. > > Only issue with this process is, we are exporting all the files every time. > But I want to export only changed files from SVN to non-svn dir. > > Is there any better way to do this?
It sounds like the way you're doing it is fine. The export will only require a bit of disk IO; the rsync to the web server will transfer only the differences. You did not say whether you are exporting from the repository or from a working copy. If you are exporting from the repository, then instead getting a working copy, updating it, and exporting from that will be faster.