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 included in the export.
How can I achieve this?
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 included in the export.
How can I achieve this?
In TortoiseSVN (windows SVN client) you do an "SVN export all", but the "unix" tag tells me that this doesn't apply to you.
I don't know if there's a built in command for that. You could write a script that interprets the output of svn st
which will output unversioned files ? marked/with/a/question/mark.config
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 '{}' \;