How do I add older versions of code into a Subversion repository as tagged versions
Posted
by TheoJones
on Stack Overflow
See other posts from Stack Overflow
or by TheoJones
Published on 2010-03-25T07:32:54Z
Indexed on
2010/03/25
8:23 UTC
Read the original article
Hit count: 503
version-control
|subversion
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.
© Stack Overflow or respective owner