views:

100

answers:

1

We have the following URL: URL: https://dev-01:8555/svn/Shop

We have the following structure in SubVersion

Shop --trunk --branches --tags

The problem is, when I do a build, under the buildagent directory, I get every single tag in the repository copied over to the buildagent.

Is there a way to only retrieve the HEAD revision to effect the build on.

+1  A: 

Assuming you want the trunk then the VCS path in TeamCity should be:

https://dev-01:8555/svn/Shop/trunk

As an aside - one would generally expect the path in TeamCity to be the same as the path you use to checkout your working copy unless you're working on a branch.

Murph
Thanks Murph. I actually need the level above as our build has two VCS roots. I removed the tags and branches by adding -:tags t end up with everything under Shop being copied to the buildagent.
El Bauldo