First page Back Continue Last page Overview Graphics
Branching / Tagging (1/2)
Where SVN really shines is in its handling of branches and tags
CVS made this possible, but in all but the most trivial of cases, complications would inevitably arise
Tagging:
svn up
cd ../tags
svn cp ../trunk 2005-03-30_PRE_RELEASE
svn commit \
-m 'made a pre-release tag' \
2005-03-30_PRE_RELEASE
Notes: