create a new branch
In SVN, branches, realses and tags are just common directories. Creating a new branch means making a new directory to contain files copied from other direcotries.
commands as below:
svn mkdir -m "creating breanches directory" http://svn.url/project/branches
svn copy -m "creating a branch for 1.0" svn http://svn.url/project/trunck/ http://svn.url/project/branches/RB-1.0
You can use the same the process to create a tag or a realse.
merge to branches:
commands:
svn merge http://svn.url/project/branches/RB1.0 http://svn.url/project/tags/bufix1.0
本文介绍了如何在Subversion (SVN) 中创建新的分支和标签,并提供了具体的SVN命令实例,包括创建分支目录、复制文件到分支以及从分支合并更改到其他分支的过程。

被折叠的 条评论
为什么被折叠?



