Skip to content
Felix S. Klock II edited this page Jul 28, 2013 · 1 revision

The source code for every public release of Larceny should be tagged in Larceny's Subversion repository.

Suppose the revision you want to tag is (e.g. 5675) and the usual path to the Subversion repository looks like <path>/svn-archives/trunk/larceny_src. Then the tagging is done in two steps that look like:


% svn mkdir /svn-archives/tags/release-0-963 \
    -m "Tagging Larceny 0.963 release."


% svn copy -r  \
    /svn-archives/trunk/larceny_src   \
    /svn-archives/tags/release-0-963  \
    -m "Tagging Larceny 0.963 release."
Clone this wiki locally