2

I am migrating to SVN from CVS. In CVS I have various aliases defined in CVSROOT/Modules file. That helps me to checkout multiple directories in one go.

For example:

Defined alias in CVSROOT/Modules file as below

=--------------------------------------------------------------------------=

my_alias /dir1 /dir2 /dir3 /dir4 /dir5 /dir6

=--------------------------------------------------------------------------=

So my checkout comamnd is optimized from

$cvs co /dir1 /dir2 /dir3 /dir4 /dir5 /dir6

to

$cvs co my_alias

I want to know if there is any similar feature in SVN.

2 Answers2

3

Maybe you are looking for svn:externals

Sjoerd
  • 74,049
  • 16
  • 131
  • 175
0

May be you should think about combine them into a single folder instead of different ones.

khmarbaise
  • 92,914
  • 28
  • 189
  • 235