Does VisualSVN Server (a Windows application) support cheap copy as defined here http://svnbook.red-bean.com/en/1.8/svn.branchmerge.using.html
Cheap Copies
Subversion's repository has a special design. When you copy a directory, you don't need to worry about the repository growing huge—Subversion doesn't actually duplicate any data. Instead, it creates a new directory entry that points to an existing tree. If you're a Unix user, this is the same concept as a hard-link. From there, the copy is said to be “lazy”. That is, if you commit a change to one file within the copied directory, then only that file changes—the rest of the files continue to exist as links to the original files in the original directory ...
I don't know how the internals of a Unix based SVN server work, but I imagine it uses file system links, which I don't quite know the state of support on Windows. VisualSVN server requires Vista/Windows Server 2008, which I think supports links ... but I'm not 100% sure.
Can anyone clarify?