I've just started using SVN and just encountered a strange problem with SVN switch that I haven't been able to find a answer to. Long story short: I had a working copy of the latest version of my application that I had stored in /my repo/tags/versionnumber. Did some bugfixes and planned to do a checkin to Trunk to deploy it to my stage-environment.
However, upon doing a svn switch it did not only change the repo path to /my repo/trunk/ but proceded to do a checkout (or something) and overwriting my local changes. Both the trunk and the tag also has the same revision number, which shouldn't be possible according to what I've read.
The following is an example output (translated from swedish so if anything sound strange you know why):
>svn info
>
>URL: svn+ssh://user@server/my repo/tags/versionnumber
......
>Revision: 8
.....
>Latest change in revision: 6
> svn switch svn+ssh://user@server/my repo/trunk/
> password ********
>
>D log
>D logparse.php
>U document_root/js/standard.js
......
>Updated to revision 8
>
>svn info
>URL: svn+ssh://user@server/my repo/trunk
......
>Revision: 8
.....
>Latest change in revision: 8
The same will happen when I switch back. It will then add the files that it previously deleted (if they exist in trunk) and "update" the files that exists in both.