Our Subversion repository has several subdirectories containing shared files as well as subdirectories for each project. Projects are set up with relative svn:externals
properties to pull in shared directories out of the repository and set them up as subdirectories.
So, for example, our repostory looks something like this:
client shared portable app1 app2
and app1
has as its svn:externals
../shared shared ../portable portable
so that on checkout, portable
and shared
are usable as subdirectories of app1
.
TortoiseSVN has the nifty feature that doing a commit on app1
will automatically detect the externals
subdirectories, realize that they're all part of the same repository, and
commit all their changes as part of the same commit. However, I can't figure out how to get the same behavior out of the command-line client. Any suggestions?