Best practice for creating subversion repositories

2019-01-22 02:42发布

Our team (5-10 developers) plans to adopt Subversion for our .NET (Visual Studio) projects/solutions (VisualSVN Server, TortoiseSVN / VisualSVN).

What is the best way to organize a new repository tree? Is it okay to use one big repository or is it better to create different repositories for every solution / product line etc.?

Our projects can be categorized this way (example):

  • Main Product Line
    • Main Web App
      • Library 1
      • Library 2
      • ...
    • Windows Client
    • Another Windows Client
    • Windows Service
  • Tools
    • Tool A
    • Tool B
  • Product Line 2
    • Software 1
    • Software 2
  • Product Line 3
    • App 1
    • App 2

8条回答
Evening l夕情丶
3楼-- · 2019-01-22 03:00

I am using one repository and many projects as below:

Projects
   Project Name
      trunk
      branches
      tags

My only concern is the backup and restore. The SVN backup is done at the repository level, so the restore will restore all projects instead of just one.

Jirong

查看更多
Bombasti
4楼-- · 2019-01-22 03:02
  • SVN managment standpoint I prefer 1 repository.
  • Programmer standpoint I prefer 1 repository.
  • Server Administrator I prefer 1 repostitory.
  • Security standpoint it is preferrable not to put all of your eggs in one basket.

Your repository structure will be somewhat unique to your business, and it's products. We keep ours in one repository. Our structure somewhat like this.

  • /
    • Projects
      • Project Name
        • trunk
        • branches
        • tags
    • Documentation
      • Project 1
    • Shared Libraries
      • Super string class
    • Small utilities
      • vim enhancement X
查看更多
beautiful°
5楼-- · 2019-01-22 03:08

We use one big repository, and just have everything structured in subfolders (/project1, /project2 etc) and that seems to work fine.

The Apache project has a huge svn repository and it seems to do OK for them! :)

In terms of organisation, the structure you gave looks quite reasonable. I think anything goes, pretty much, so long as it's rational (i.e. mixing up every single tool with every single project is probably a bad idea etc). So pick something which works for you (tools/, projects/ etc). Subversion has pretty good support for moving things around in the repository, too, so you can always change if necessary.

查看更多
爷的心禁止访问
6楼-- · 2019-01-22 03:10

Try to keep regularly accessed material (code, scripts) separate from the 'write-once and commit to backup' stuff. Having to checkout/update thousands of jpegs just to change a few lines of code gets dull very quickly.

查看更多
仙女界的扛把子
7楼-- · 2019-01-22 03:11

Generally, you want to use a separate repository in any case where you are expecting different access permissions (i.e. some developers should have commit access to one project, but not another, or one project has a public read-only anonymous interface but another doesn't).

You want everything in one repository if you don't need that level of access control, especially if you need to be able to copy or move files between projects (i.e. projects might share code).

Put your trunk/tags/branch split at whatever level corresponds to a chunk of code you might release as a single package (i.e. think of where you would tag). This isn't critical to get right at first, since these no different internally from any other folder, so you can just move things around later, though of course it's neater not to have that problem.

查看更多
登录 后发表回答