Difference between revisions of "Tag Source For Release"

From NST Wiki
Jump to navigationJump to search
(New page: Use the ''make release-tag'' command to tag (or re-tag) all of the files for the release. [root@nst-dev-32 repo]# make release-tag ... lots of CVS messages - may pause several times ....)
 
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Use the ''make release-tag'' command to tag (or re-tag) all of the files for the release.
+
Use the ''svn cp'' command to create a branch of the files used for the release (a copy of "repo"). For example:
  
[root@nst-dev-32 repo]# make release-tag
+
 
 +
  [nst@repo repo]$ VER=30
 +
  [nst@repo repo]$ SVNVER=11210
 +
  [nst@repo repo]$ svn cp -m "Creating copy of source for ${VER}-${SVNVER} release" ${SVNROOT}/repo/${VER} ${SVNROOT}/releases/${VER}-${SVNVER}
 
   
 
   
  ... lots of CVS messages - may pause several times ...
+
  ... output from branch creation ...
 
   
 
   
[root@nst-dev-32 repo]#
+
  [nst@repo repo]$

Latest revision as of 11:57, 16 July 2019

Use the svn cp command to create a branch of the files used for the release (a copy of "repo"). For example:


 [nst@repo repo]$ VER=30
 [nst@repo repo]$ SVNVER=11210
 [nst@repo repo]$ svn cp -m "Creating copy of source for ${VER}-${SVNVER} release" ${SVNROOT}/repo/${VER} ${SVNROOT}/releases/${VER}-${SVNVER}

... output from branch creation ...

 [nst@repo repo]$