SVN - Tag\Branches 内部结构
SVN - Tag\Branches Inner Structure
我还没有完全理解svn文件夹结构。
我现在有这个结构:
myrepo
_我的项目
___trunk
___tags
___branches
我知道每个svn文件夹的意思。但是我还没有完全理解我应该如何正确使用 tags\branches:
模式A:myrepo\myproject\tags\REL-1.0\trunk\"content of trunk"
模式B:myrepo\myproject\tags\REL-1.0\"content of trunk"
哪个最好?并且都可以使用 svn copy 命令来实现吗?
您想使用所谓的模式 B:
svn copy http://svn.example.com/svn/repos/project/trunk \
http://svn.example.com/svn/repos/project/branches/mybranch
还有
svn copy http://svn.example.com/svn/repos/project/trunk \
http://svn.example.com/svn/repos/project/tags/REL-1.0
我还没有完全理解svn文件夹结构。 我现在有这个结构:
myrepo
_我的项目
___trunk
___tags
___branches
我知道每个svn文件夹的意思。但是我还没有完全理解我应该如何正确使用 tags\branches:
模式A:myrepo\myproject\tags\REL-1.0\trunk\"content of trunk"
模式B:myrepo\myproject\tags\REL-1.0\"content of trunk"
哪个最好?并且都可以使用 svn copy 命令来实现吗?
您想使用所谓的模式 B:
svn copy http://svn.example.com/svn/repos/project/trunk \
http://svn.example.com/svn/repos/project/branches/mybranch
还有
svn copy http://svn.example.com/svn/repos/project/trunk \
http://svn.example.com/svn/repos/project/tags/REL-1.0