My situation: I have several components, which sometimes have changes to them, and are shared across a lot of different projects. Each project puts these in a subfolder ca
I believe part of the problem is that the release cycles for the shared components don't necessarily match the release cycles for the projects.
Shared components as described here have their own release cycle. In other words each one could be managed as a separate project (or perhaps the collection of them managed as a separate project) with a release/version number all its own.
Note that the svn:externals
definition can include a specific revision.
This allows each of the projects that makes use of a shared component to be developed against a specific release/revision of that shared component (or the collection of shared components), providing a stable set of dependencies for the project. Changes to the components won't break the projects because each project is looking at a specific revision of the components that isn't necessarily the HEAD
on the trunk
.
While this may seem like more work up front, I believe in the long run this practice provides a better change management process for this type of situation.
You could try using the so-called vendor branches:
http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.advanced.vendorbr
It's a useful strategy when you deal with third-party libraries, but it can also be useful in a situation like yours.
I agree with @Ken.
I'd very strongly recommend against using svn:externals
at all without a specific revision. Without a revision, it is impossible to recreate old checkouts. If you only pin your externals when tagging, you will only be able to recreate what you've tagged. If you want to recreate some intermediate revision in trunk, you're on your own.
One reason for not branching externals is that it is not clear how that should be done. If your externals into project A points to tags/2.0.0 and you're creating a 3.4.x branch for your project, what should the external for project A point to? Should project A branch as well? If so, to what version?
If the projects have different release cycles, it is in general impossible to define a reasonable behavior for externals when branching.
(You might want to take a look at the svncopy.pl
script if you haven't already (included in the Subversion source distribution) which allows you to pin externals during tagging.)
We've found that svn:externals work very poorly when used to keep together a set of components you're actively developing. Externals works nice to bring in external components which don't move very much, and where you don't have the issue of branching.
svncopy.pl
(mentioned in this question) will rewrite the paths in the svn:externals
to their new location in the branch.
I stated this on a similar question:
You should use svn:externals
as external references from different repositories. So svn:externals
should refer to components, modules, 3rd party tools, etc. which reside in different repositories.
You should not use svn:externals
to emulate a "symbolic link"-behaviour by using externals to point into the same repository.
You can solve such issues most of the time by modifying your build-structure, or use checkout-scripts and sparse checkout feature.
svn:externals have a lot of problems most of them are difficult to see, track and repair: see an example here
If you use externals to point to other repositories, you will most of the time do not have these problems.