When we finally started using source control, old versions of code were added into the SVN in their own discrete folders, so I ended up with
root
\libv4
\libv4.2
\lib4.3
\lib5
What I would like to get to is having these older versions of the code as tagged versions inside the repository, like this:
root
\lib
\tags
\v4
\v4.2
\v4.3
\v5.0
\trunk
how would I go about doing this? I'm using Tortoise SVN on the client side, and visualSVN server at the back.