Nate
Nate

Reputation: 30656

Help with SVN Setup

I am setting up VisualSVN. It comes with a "Repositories" repo. My question is pretty simple I hope, do I create a single repository under the root and then add a new folder for each project I want to manage? or do I create a new repository under the root "Repositores" for each new project?

Upvotes: 1

Views: 300

Answers (3)

William Leara
William Leara

Reputation: 10697

Some things to consider:

Upvotes: 1

Robert Deml
Robert Deml

Reputation: 12532

I have all of my projects in a single repository. Each project gets a folder with a trunk, tags, and branches subfolder. One drawback to this is that any commit increments the revision of the repository, but I don't show the revision number anywhere in my code.

Upvotes: 2

J.W.
J.W.

Reputation: 18181

If your projects are related, then I would create a single repository under the root and then add a new folder for each project I want to manage. A single repository could contain a project group which contains different projects.

If your projects are unrelated, then create a new repository for each project. Then each project will belong to different project group.

Upvotes: 1

Related Questions