Reputation: 25141
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
Reputation: 10250
Cross-Reference to related question: SVN project structure It covers if you choose to go with just one repository.
Upvotes: 0
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.
Upvotes: 0
Reputation: 15069
You can use one repository, You can give access base on sub folders, so no need for a 2nd repository.
Upvotes: 1
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