Is there any 'alias' feature in SVN like we have in CVS?
- by Nirmal Singh Raja Reegan
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.