In Subversion can files in the tags folder be a reference (i.e. like a symbolic link) to those in a certain revision to save space?
From my question What actually are tags in subversion (SVN)? And what tag tools does SVN offer built-in? (Compared to Clearcase) I learnt that tags are just directories holding snapshots of one's source.
But if a tag contains the files that are also in a certain revision, then isn't that wasteful? OK, one could argue that storage is cheap, but that depends on how big the source is and how many revisions and tags there will be now, and in the future.
So for efficiency sake (and for the reassurance that they are actually the same file), can a tag kind of symbolically link to specific revision that contains the files?
2 answers to your question:
So if you want to save space, you should not use
svn:externals
(at least not for tags) because it is cheap anyway.