Free Software Server Environment : SubVersionBranchesAndTags

HomePage :: Categories :: PageIndex :: RecentChanges


Search this site: FSSE.INFO is produced by "osde8info" :

Revision [679]

Most recent edit made on 2008-07-31 09:57:49 by FsseInfo

Additions:
lastest revision/version
latest checked in revision/version
$ svn log --limit 1 -q
current local revision/version
$ svnversion




Revision [463]

Edited on 2008-04-24 14:38:44 by FsseInfo

Additions:

Subversion Copies / Tags / Branches

first create top level SVN project directory structure of
branches
tags
trunk
tags
copy creates a copy / tag / branch
$ svn copy http://my.svn/myproject/trunk/myproject http://my.svn/myproject/tags/yy-mm-dd -m "version yy-mm-dd"
branches
if something is modified (co/ci) in that copy / tag / branch it "becomes" a branch !
$ svn copy http://my.svn/myproject/trunk/myproject http://my.svn/myproject/branches/yy-mm-dd -m "branch yy-mm-dd"
merge
$ svn merge -r1000:1010 http://my.svn/myproject/trunk/myproject http://my.svn/myproject/branches/yy-mm-dd


Deletions:

Subversion Branches and Tags

copy

copy creates a tag and a branch is created if the tag is modified (confused ?)
$ svn copy trunk/myproject tag/myproject/x.y

merge

$ svn merge -r1000:1010 trunk/myproject branches/myproject/mybranch




Revision [387]

The oldest known version of this page was edited on 2007-05-04 10:37:54 by FsseInfo

Subversion Branches and Tags


copy

copy creates a tag and a branch is created if the tag is modified (confused ?)
$ svn copy trunk/myproject  tag/myproject/x.y


merge

merge trunk with branchs into local copy which you will then need to commit !
$ svn merge -r1000:1010 trunk/myproject  branches/myproject/mybranch



REFERRERS
SubVersion
Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by WikkaWiki
Page was generated in 0.1207 seconds