/ Published in: DOS Batch
Batch script creates initial svn repository structure according to SCM framework (http://scm.altern.kiev.ua): /project /trunk /tags /builds /PA /A /B /releases /AR /BR /RC /ST /branches /support /releases /experimental /feature
Expand |
Embed | Plain Text
@ECHO off :TOP svn mkdir %SVN_REPO%/trunk %SVN_REPO%/branches %SVN_REPO%/tags -m "Initializing basic repository structure" svn mkdir %SVN_REPO%/branches/experimental %SVN_REPO%/branches/feature %SVN_REPO%/branches/support %SVN_REPO%/branches/release %SVN_REPO%/tags/builds %SVN_REPO%/tags/builds/PA %SVN_REPO%/tags/builds/A %SVN_REPO%/tags/builds/B %SVN_REPO%/tags/releases %SVN_REPO%/tags/releases/AR %SVN_REPO%/tags/releases/BR %SVN_REPO%/tags/releases/RC %SVN_REPO%/tags/releases/ST -m "Initializing extended repository structure" :END
You need to login to post a comment.
