I would like to export my code from the working svn copy while including all unversioned files. For example, there are uploaded images/config files etc, that I would like in
What do you mean by "export"? You can just use cp -r to copy the directory tree directly, and then remove the .svn directories afterwards: find . -name .svn -type d -exec rm -r '{}' \;