In CVS i can be specific with the type of checkout i need to acquire... For expample:
cvs -q checkout -d CMS -P CMS
Which means, checkout somewhat quite and create a directory called CMS and Prune empty directories and place it in CMS folder.
I need to create the same directory structure using SVN checkout... Here is what i have so far.
svn checkout http://svn/project/CMS/trunk CMS -q
There are some empty folders that i have in my repository that i need to keep but not checkout during a checkout. I know SVN uses --depth and --empty but i don't think that will take care of my request.
Basically i need to checkout my repository but exclude empty folders during checkout... Any one know what the command would be for that? To bad i couldn't use the -P like i can in CVS.
Thanks for you help.