Reading the referers of this website, I found that someone reached it querying a search engine for
subversion or svn export only changed files
This one-liner (that can be easily turned into a subversion hook) could do the task
for i in `svn log -r HEAD -v | grep "^ [MA]” | awk ‘{print $2}’`; do rsync -avR $i /basedir_of_your_export/; done
I’ve previously described here a slightly different problem.
Last update: 2008-05-20
0 Responses to “Exporting changed only files with Subversion”
Leave a Reply