maxp
maxp

Reputation: 25141

VSS to SVN - Repositories

We're finally moving from Visual Source Safe to VisualSVN (et al) woohoo.

Is it common practise to just create one repository, and then subsequently add all projects as subfolders of this repository, or create one repository for each project?

Upvotes: 1

Views: 323

Answers (4)

AnneTheAgile
AnneTheAgile

Reputation: 10250

Cross-Reference to related question: SVN project structure It covers if you choose to go with just one repository.

Upvotes: 0

M99
M99

Reputation: 1907

It depends on the company. I was a consultant for many years and I have seen different approaches. Following is the most popular approach.

  • Each Team creates a repository and stores all their projects in that one repository.

Upvotes: 0

Dani
Dani

Reputation: 15069

You can use one repository, You can give access base on sub folders, so no need for a 2nd repository.

Upvotes: 1

duffymo
duffymo

Reputation: 308763

The version numbers are independent if you create a separate repository for each project. So project A might be at version 10 and B at 100.

The version number is a running total if you have one repository and a subfolder for each project.

Upvotes: 2

Related Questions