重新组织 svn 存储库
我创建了 svn 存储库,而不用担心分支等。现在,我想创建分支。 这个问题说我可以通过复制来创建分支。但是,由于我没有 trunk/branches 文件夹,/commands 重新组织目录的正确方法是什么?
I created svn repositories, without worrying about branches, etc. Now, I want to create branch.
This question says I can create branch by copying. However, as I do not have trunk/branches folder, whats the right way /commands to reorganize the directories?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,创建并签入名为 trunk 的文件夹,将所有文件和文件夹移动到 trunk 文件夹
svn move
。如果您有 TortoiseSVN,您可以使用存储库浏览器进行移动。然后创建一个名为
branches
的文件夹和一个名为tags
的文件夹,您应该会回到标准布局的轨道。主干、标签和分支没有什么特别的,只是一个命名约定。
First, create and check in a folder named trunk, move all your files and folders to the trunk folder with
svn move
. If you have TortoiseSVN you can move with the repository browser.Then create a folder named
branches
and one namedtags
and you should be back on track with a standard layout.There is nothing special with trunk, tags and branches, it is just a naming convention.