How do i check out a specific directory from CVS and omit the tree leading up to that directory?
EX.
Id like to checkout to this directory C:/WebHost/MyWebApp/www
My CVS Project directory structure is MyWebApp/Trunk/www
How do i omit the Trunk and MyWebApp directories?
cvs -d [email protected]:/cvs co -d ls src/bin/ls
to checkout the ls remote repository directory tols
local repository directory (by creating it, if does not exist already) – Saros