Twitter Updates

Thursday 5 February 2009

Creating Subversion tags

Subversion is a popular source code revision control application. When making a release of the it is a good idea to make a tag so that you roll back or branch from a specific version. Assuming that the /tags/Releases folder already exists, this command will create a tag

svn copy https://fileexplorer.svn.sourceforge.net/svnroot/fileexplorer/trunk/ \
https://fileexplorer.svn.sourceforge.net/svnroot/fileexplorer/tags/Release/0.1.0.a1 \
-m 'Tagging the 0.1.0.a1 release'

No comments: