Is it possible to checkout files from subversion without those .svn folders?
asp.net, svn
Solution
yes. Just export.
svn export REV URL PATH
the contents of URL will be placed in PATH. (Path and rev is optional.)
Obviously, you should not use this command for starting to work on the files.
Problem
Is it possible to checkout files from subversion without those .svn folders? (for publishing .NET apps to release server).