Tag Source For Release: Difference between revisions

From MediaWiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
Use the ''svn cp'' command to create a branch of the files used for the release (a copy of "repo"). For example, if creating release '''24''' for subversion revision ''7973'':
Use the ''svn cp'' command to create a branch of the files used for the release (a copy of "repo"). For example, if creating release '''28''' for subversion revision ''10234'':


   [nst@nst24-repo repo]$ svn cp -m "Creating copy of source for 24-7973 release" ${SVNROOT}/repo/24 ${SVNROOT}/releases/24-7973
 
  [nst@repo repo]$ VER=28
  [nst@repo repo]$ SVNVER=10234
   [nst@repo repo]$ svn cp -m "Creating copy of source for release" ${SVNROOT}/repo/${VER} ${SVNROOT}/releases/${VER}-${SVNVER}
   
   
  ... output from branch creation ...
  ... output from branch creation ...
   
   
   [nst@nst24-repo repo]$
   [nst@repo repo]$

Revision as of 08:29, 2 July 2018

Use the svn cp command to create a branch of the files used for the release (a copy of "repo"). For example, if creating release 28 for subversion revision 10234:


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

... output from branch creation ...

 [nst@repo repo]$