Reputation: 1172
If I have a SVN project set up like so:
Project
-- Subdirs
-- A
-- A1.txt
-- A2.txt
-- A3.txt
-- B
-- B1.txt
-- B2.txt
-- B3.txt
Is it possible to use externals to combine the contents of the A and B subdirectories into a single directory elsewhere, so I'd have:
Project
-- Subdirs
-- A
-- A1.txt
-- A2.txt
-- A3.txt
-- B
-- B1.txt
-- B2.txt
-- B3.txt
-- CombinedViaExternals
-- A1.txt
-- A2.txt
-- A3.txt
-- B1.txt
-- B2.txt
-- B3.txt
Upvotes: 2
Views: 1899
Reputation: 68268
It is possible to do so since Subversion 1.6 ( release notes), but note the restrictions:
Upvotes: 1