In my repo trunk I have a directory unit-tests
that I want to keep out of my release tags. What I've been doing is copying trunk to a new tag, then deleting unit-tests
. Is this OK? It feels wrong because it takes two revisions to tag every release. Is there a way to exclude a directory from the svn copy?
E.g. I have:
/trunk/unit-tests
/trunk/dir1
/trunk/file1
/trunk/file2
And I want to create:
/tags/release_123/dir1
/tags/release_123/file1
/tags/release_123/file2
I generally use Tortoise/Eclipse clients, but I could cli it if need be.